def main(): N = int(input()) assert 1 <= N <= 4000 if N < 1200: print("green") else: print("difficult") if __name__ == "__main__": main()