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