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