import java.io.*; public class no225 { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { BufferedReader r = new BufferedReader(new InputStreamReader(System.in)); String[] input = new String[2]; input = r.readLine().split(" "); int A = Integer.parseInt(input[0]); int B = Integer.parseInt(input[1]); String S = ""; S = r.readLine(); System.out.println((A + B) + " " + S); } }