fork download
  1. //my code
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. string s;
  7. int count=0;
  8. cin>>s;
  9. sort (s.begin(),s.end());
  10. for(int i=1;i<=s.size();i++){
  11. if (s[i]!=s[i-1]) count++;
  12. }
  13. if (count %2 ==0) cout<<"CHAT WITH HER!";
  14. else cout<<"IGNORE HIM!";
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
CHAT WITH HER!