using System;
public class Program
{
public static void Main()
string str1 = "Hello";
string str2 = "World";
object obj = str1 + " " + str2;
}