class Program
{
static void Main(string[] args)
string x = "foo";
x += "bar";
System.Console.WriteLine(x);
}