using System;
public class Program
{
public static void Main()
String str1 = "Hello", str2 = "Pawan";
Console.WriteLine("Strings before swapping: " + str1 + " " + str2);
//Concatenate both the string str1 and str2 and store it in str1
}