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