您的位置:首页 > 其它

求出现字母个数

2016-04-12 17:57 225 查看
 这样一个水题,依然被拦住了。我以字符为下标,但恰好z的ASCIIL值为122.而我只开了120.所以一直被卡

Description

Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very
often and eventually they became a couple in the network.

But yesterday, he came to see "her" in the real world and found out "she" is actually a very strong man! Our hero is very sad and he is too tired to love again now. So he came up with a way to recognize users' genders by their user names.

This is his method: if the number of distinct characters in one's user name is odd, then he is a male, otherwise she is a female. You are given the string that denotes the user name, please help our hero to determine the gender of this user by his method.

Input

The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.

Output

If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).

Sample Input

Input
wjmzbmr


Output
CHAT WITH HER!


Input
xiaodao


Output
IGNORE HIM!


Input
sevenkplus


Output
CHAT WITH HER!


Hint

For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m",
"z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".

#include<stdio.h>
#include<string.h>
using namespace std;
char a[120];
int vis[130]={0};
int main()
{
while(scanf("%s",a)!=EOF)
{
memset(vis,0,sizeof(vis));
int sum=0;
int t=strlen(a);
// printf("%d\n",t);
for(int i=0;i<t;i++)
{
if(vis[a[i]]!=1)
{
vis[a[i]]=1;
sum++;
}
}
// printf("%d\n",sum);
if(sum%2==0)
printf("CHAT WITH HER!\n");
else
printf("IGNORE HIM!\n");
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: