#include using namespace std; int main(){ int a, b, s; string m; cin >> a; cin >> b; cin >> m; s = a + b; cout << s << " " << m << endl; }