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