#include using namespace std; int main(){ int a, b; char str[10]; cin >> a; cin >> b; cin >> str; cout << a+b << " " << str << endl; return 0; }