python-algorithm
codeforces 236A. Boy or Girl
무적김두칠
2022. 4. 28. 14:27
1
2
3
4
5
6
7
|
s=(input())
tmp = []
for i in s:
if i not in tmp :
tmp.append(i)
if len(tmp)%2 != 1 : print('CHAT WITH HER!')
else : print('IGNORE HIM!')
|
cs |
반응형