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