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