#include int main(void) { int a, b; // カンマ区切りの入力 scanf("%d,%d", &a, &b); // 出力形式に従って表示 printf("a + b = %d\n", a + b); return 0; }