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