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