#include int main() { int a, b; // 2つの整数を入力として受け取る scanf("%d %d", &a, &b); // 足し算をして結果を出力する printf("%d\n", a + b); return 0; }