#include int main(){ int a,b; if (scanf("%d %d", &a, &b) != 2) { printf("入力エラーです。\n"); return 1; } printf("%d\n", a + b); return 0; }