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