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