fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. class Program
  5. {
  6. static string RemoveDuplicates(string input)
  7. {
  8. return new string(input.ToCharArray().Distinct().ToArray());
  9. }
  10.  
  11. static void Main()
  12. {
  13. string input = RemoveDuplicates(Console.ReadLine());
  14.  
  15. if (input.Length % 2 == 0)
  16. {
  17. Console.WriteLine("CHAT WITH HER!");
  18. }
  19. else
  20. {
  21. Console.WriteLine("IGNORE HIM!");
  22. }
  23. }
  24. }
Success #stdin #stdout 0.04s 37064KB
stdin
wjmzbmr
stdout
CHAT WITH HER!