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