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