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