#include using namespace std; int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); int A, B; string S; cin >> A >> B; cin >> S; cout << A + B << " " << S << endl; return 0; }