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