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