using System; public class Program { static void Main() { int A = Convert.ToInt32(Console.ReadLine()); int B = Convert.ToInt32(Console.ReadLine()); string S = Console.ReadLine(); int N = A + B; Console.WriteLine(N.ToString() + " " + S); } }