#include int main(void) { int a, b; // カンマとスペースを含む入力を読み取る scanf("%d , %d", &a, &b); // 足し算の結果を出力 printf("%d\n", a + b); return 0; }