#include int main() { int A, B; char S[11]; scanf("%d %d", &A, &B); scanf("%s", S); printf("%d %s\n", A + B, S); fflush(stdout); return 0; }