#include #include int main(void) { int a,b; while ( scanf("%d , %d", &a, &b)!=2) { printf("入力エラーです。"); } printf("a+b = %d¥n,a+b"); return 0; }