using System;
public class Program
{
public static void Main()
string myName = "Pratul";
string myLast = "Ghosh";
string fullName = myName + " " + myLast; // Puts all the above two strings in one single string
string capsName = fullName.ToUpper(); // Converts the fullName string to all Caps by using the ToUpper method
Console.WriteLine(capsName); // Output the string capsName
}