#include using namespace std; int main() { int a, b; cin >> a >> b; string str; cin >> str; cout << a + b << " " << str << endl; return 0; }