import java.util.Scanner; public class Main { public static void main(String[] args) { int N = 0; Scanner sc1 = new Scanner(System.in); int A = sc1.nextInt(); int B = sc1.nextInt(); Scanner sc2 = new Scanner(System.in); String S = sc2.nextLine(); N = A + B; System.out.println(N + " " + S); } }