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