#include #include int main() { int a, b; if (scanf("%d,%d", &a, &b) == 2) { printf("a + b = %d\n", a + b); } return 0; }