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