using System; public class Test { public static void Main() { int a = 18; String s; s = "a is "; s += a.ToString(); Console.WriteLine(s); } }