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