newton/solutions/in_search_of_an_easy_problem.py

8 lines
121 B
Python
Raw Normal View History

2025-01-11 11:41:29 +00:00
n = input()
opinions = [int(x) for x in input().split(' ')]
if 1 in opinions:
print("HARD")
else:
print("EASY")