def solve(): N = int(input()) return 'green' if N < 1200 else 'difficult' #================================================== print(solve())