fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string s,vow="aiueo";int x;
  6. cin>>s;x=s.length();
  7. for(int i=0;i<s.length();i++){
  8. for(int j=0;j<5;j++){
  9. if(s[i]==vow[j])x--;
  10. }
  11. }
  12. if(x%2==0)cout<<"IGNORE HIM!";
  13. else cout<<"CHAT WITH HER!";
  14. return 0;
  15. }
Success #stdin #stdout 0s 4528KB
stdin
kokolimia
stdout
IGNORE HIM!