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