#include<bits/stdc++.h>
using namespace std;
string s;
int main()
{
	cin>>s;
	if(s.size()%2==1)
	{
		cout<<"IGNORE HIM!";
	}
	else
	{
		cout<<"CHAT WITH HER!";
	}
	return 0;
} 
2025/4/12 21:35
1342927