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