#include #include using namespace std; int main(int argc, char const* argv[]) { int A, B; string S; cin >> A >> B >> S; cout << A+B << ' ' << S << endl; return 0; }