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