#include #include int main(void) { int A, B; std::string S; std::cin >> A >> B; std::cin >> S; std::cout << (A + B) << " " << S << std::endl; return 0; }