import java.util.*; class Main { private static final String SPLIT_STR = " "; private static final String SPACE = " "; public static void main(String[] args) { // Scanner生成 Scanner sc = new Scanner(System.in); // 入力設定 String[] input = sc.nextLine().split(SPLIT_STR); int num1 = Integer.parseInt(input[0]); int num2 = Integer.parseInt(input[1]); sc.reset(); String str = sc.nextLine(); // Scannerクローズ sc.close(); // 結果 String result = ""; // メイン処理 result = String.valueOf(num1 + num2) + SPACE + str; // 出力 System.out.println(result); } }