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