#include int main(void) { int A,B; char str[10]; scanf("%4d,%4d\n",&A,&B); scanf("%10s",str); printf("%d %s",A+B,str); return 0; }