#include #include using namespace std; void main() { string action = ""; string subject = ""; while(action != "end game" && action != "quit") { cout << "You fell off your chair and into the jungle. There is a beaten path WEST. There is a slightly less beaten path NORTH. There is only forestry EAST. SOUTH is a well-hidden trap that you would probably fall through."; cout << "\n\nWhat doeth ye? "; cin >> action >> subject; cout << action << endl; cout << subject << endl; } }