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