#include #include int main() { int a, b; scanf("%d,%d", &a, &b); // ユーザーの入力を変数a, bに格納 printf("a + b = %d\n", a + b); return 0; }