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