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