//Opening Comments #include #include #include using namespace std; int main() { bool found = false; //Tells if we have found the moose string name; char ans; //Answer to the question cout << "Everyone in the row please stand up!"<> name; cout << name <<", do you have the moose?(y/n) "; cin >> ans; if(ans == 'y' || ans == 'Y') { found = true; } else { cout << name <<", is the moose to your left?(y/n) "; cin >> ans; if(ans == 'y' || ans == 'Y') cout << name <<", you and everyone to your right sit down." <