#include #include using namespace std; int main() { int x, y; string str; cin >> x >> y >> str; cout << x + y << ' ' << str << endl; return 0; }