#include int main(void){ int a,b; char* c; scanf("%d %d",&a,&b); scanf("%s",c); int sum; sum=a+b; printf("%d %s",sum,c); return 0; }