using System; public class Program { static void Main() { string s = "yukicoder"; int a = 1, b = 2; a = a + b; Console.WriteLine(a + " {0}", s); } }