#include using namespace std; int main(void) { int a, b; scanf("%d%d", &a, &b); string s; cin >> s; printf("%d %s\n", a+b, s.c_str()); return 0; }