#include int main() { int a, b; scanf("%d,%d", &a, &b); // カンマ区切りで入力を読み取る printf("a + b = %d\n", a + b); // 指定された形式で出力 return 0; }