fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << "English or Spanish";
  7. string answer;
  8. cin >> answer;
  9. if(answer == "English" || answer == "english"){
  10. cout << "First one to move is gay";
  11. }
  12. if(answer == "Spansih" || answer == "spanish"){
  13. cout << "El primero en moverse es gay";
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
English or Spanish