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