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