using System;
class Program
{
static void Main()
{
const string s1 = "c# ";
const string s2 = "Java ";
Console.WriteLine(s1 + s2);
// s1 = "php"; // Error CS0131: The left-hand side of an assignment must
// be a variable, property, or indexer
}
}
/*
run:
c# Java
*/