#include <iostream>
usingnamespace std;
int main()
{
cout << "Your options are 1-5. Good luck." << endl;
string userinput;
{
cin >> userinput;
if (userinput == "1", "one", "One") cout << "You answered 1. You will now die." << endl;
elseif (userinput == "2", "two", "Two") cout << "You answered 2. You will now die." << endl;
elseif (userinput == "3", "three", "Three") cout << "You answered 3. You will now die." << endl;
elseif (userinput == "4", "four", "Four") cout << "You answered 4. You will now die." << endl;
elseif (userinput == "5", "five", "Five") cout << "You answered 5. You will live." << endl;
else cout << "You should have followed the rules. You will now die." << endl;
}
}