#include #include #include using namespace std; int main() { cout << "Can you get away safely? "; string ans; cin >> ans; if (ans == "yes") { cout << "Run for your life and don't look back!"; } else if (ans == "no") { cout << "OH NO, Well can you barricade in space?"; cin >> ans; if (ans == "yes") { cout << "Then hide there and barricade the door!"; } else if (ans == "no") { cout << "Grab a weapon and get ready to fight!"; } } cout << "\n"; return EXIT_SUCCESS; }