/* * 9001.cpp */ //include files #include using namespace std; //DEFINE CONSTANT //DEFINE PROTOTYPE int main(){ int A,B; string S; cin >> A >> B >> S; cout << A+B << " " << S; }