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