#include int main() { int a, b; scanf("%d %d", &a, &b); // ← カンマなしに修正 printf("%d\n", a + b); // ← 出力は数値のみ、改行付き return 0; }