#include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::string;
int main()
{
string play_game;
cout<<"Would you like to play a dice game? yes/no"<<endl;
cin>>play_game;
if(play_game == "yes"||"YES"||"Yes"||"y"||"Y"){
cout<<"This triggers the if statement"<<endl;
}
elseif(play_game == "no"||"No"||"NO"||"n"||"N"){
cout<<"This triggers the else if statement"<<endl;
}
else{
cout<<"This triggers the else statement";
}
}