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