#include int main(int argc, char *argv[]){ int a,b,r,i; char str[11]; scanf("%d%d",&a, &b); scanf("%s",str); printf("%d %s", a+b, str); return 0; }