#include int main() { int a, b; // カンマ区切りで2つの整数を入力 scanf("%d , %d", &a, &b); // 出力形式に合わせた表示 printf("a + b = %d\n", a + b); return 0; }