using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukiCoder { class Program { static void Main() { string Text = Console.ReadLine(); string[] args = Text.Split(' '); var temp1 = Convert.ToInt32(args[0]); var temp2 = Convert.ToInt32(args[1]); Text = Console.ReadLine(); Console.WriteLine((temp1 + temp2) + " " + Text); Console.ReadKey(); } } }