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