import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { new Main(); } public Main() throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine().trim(); String[] arr = line.split(" "); int a = Integer.parseInt(arr[0]); int b = Integer.parseInt(arr[1]); String s = br.readLine().trim(); System.out.println((a + b) + " " + s); br.close(); } }