#include int main(void) { int a, b; char s[10]; scanf("%d,%d,%s", &a, &b, s); printf("%d,%s", a+b, s); return 0; }