#include int main() { int a, b; scanf("%d %d", &a, &b); // 整数の入力 int sum = a + b; printf("%d\n", sum); // 合計の出力 return 0; }