Boy or Girl

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).

Examples
Input
Copy
wjmzbmr
Output
Copy
CHAT WITH HER!
Input
Copy
xiaodao
Output
Copy
IGNORE HIM!
Input
Copy
sevenkplus
Output
Copy
CHAT WITH HER!
Note

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!".

by talk:主要输入的字符串会有重复的字符,如果单纯地用strlen()肯定不行的它会把重复的也算上,那我们就排序之后再判断第i个与第i+1个是否一样就行了。

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
   char a[102];
   while(gets(a))
   {
       int len=strlen(a);
       sort(a,a+len);
       int sum=0;
       for(int i=0;i<len;i++)
       {
           if(a[i]!=a[i+1])
             sum++;
       }
      if(sum%2==0)
        printf("CHAT WITH HER!\n");
      else
        printf("IGNORE HIM!\n");
   }
   return 0;
}

Girl类的定义如下: ``` #include <iostream> #include <string> using namespace std; class Boy; //前置声明Boy类 class Girl { private: string name; int age; public: Girl(string n, int a) : name(n), age(a) {} ~Girl() {} void Print() { cout << "Girl's name: " << name << endl; cout << "Girl's age: " << age << endl; } void VisitBoy(Boy& b); //声明Boy类的友元成员函数 friend void visitBoyGirl(Boy&, Girl&); //声明友元函数 }; void Girl::VisitBoy(Boy& b) { cout << "Girl's name: " << name << endl; cout << "Girl's age: " << age << endl; cout << "Boy's name: " << b.name << endl; cout << "Boy's age: " << b.age << endl; } class Boy { private: string name; int age; public: Boy(string n, int a) : name(n), age(a) {} ~Boy() {} void Print() { cout << "Boy's name: " << name << endl; cout << "Boy's age: " << age << endl; } friend void Girl::VisitBoy(Boy& b); //声明Girl类的友元成员函数 friend void visitBoyGirl(Boy&, Girl&); //声明友元函数 }; void visitBoyGirl(Boy& b, Girl& g) { cout << "Girl's name: " << g.name << endl; cout << "Girl's age: " << g.age << endl; cout << "Boy's name: " << b.name << endl; cout << "Boy's age: " << b.age << endl; } int main() { Girl girl("ZHOU Yuxing", 16); Boy boy("Chen Qi", 15); girl.Print(); boy.Print(); girl.VisitBoy(boy); //调用Girl类的友元成员函数 visitBoyGirl(boy, girl); //调用友元函数 return 0; } ``` 运行结果: ``` Girl's name: ZHOU Yuxing Girl's age: 16 Boy's name: Chen Qi Boy's age: 15 Boy's name: Chen Qi Boy's age: 15 Girl's name: ZHOU Yuxing Girl's age: 16 Boy's name: Chen Qi Boy's age: 15 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值