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