import java.util.Scanner; public class No9001 { public static void main(String[] args) { int a,b; String s; Scanner sc = new Scanner(System.in); a = sc.nextInt(); b = sc.nextInt(); s = sc.next(); System.out.println(a+b + " " + s); } }