#include int main() { int a, b; // 入力は「整数,整数」の形(カンマの前後に空白があってもよい) scanf("%d , %d", &a, &b); int sum = a + b; printf("a+b=%d\n", sum); return 0; }