#include #define rep(i,n) for (int i = 0; i < (n); ++i) using namespace std; using ll = long long; using P = pair; int main () { ios::sync_with_stdio(0); cin.tie(0); int A,B; string S; cin >> A >> B >> S; cout << A+B << " " << S << endl; return 0; }