#include <iostream>
using namespace std;
int main() {
string index;
cout << "01! Hi mate! HoWru doin '?" << endl;
cout << "I am";
cin >> index;
if (index == "happy"){
cout << endl << "I am happy too!";
}
else if (index == "sorry"){
cout << endl << "Sorry to hear that. I wish there is anything I can do" << endl;
}
else if (index == "angry"){
cout << endl << "Sorry to hear that. I wish there is anything I can do" << endl;
}
else if (index == "neutral"){
cout << endl << "Oh, There is always a good reason to be happy!" << endl;
}
}