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