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