blob: 1ce7fffcc2bf3d647fd7e7117ab376319bb04fe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<bits/stdc++.h>
using namespace std;
int main() {
string s;
cin >> s;
set<char> st;
for(auto ch : s) {
st.insert(ch);
}
cout << (st.size() % 2 != 0 ? "IGNORE HIM!" : "CHAT WITH HER!") << endl;
}
|