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