Problem
Chef prepared a problem. The admin has rated this problem for
points.
A problem is called :
Easy if
Medium if
Hard if
Find the category to which Chef’s problem belongs.
Here is the Problem Link : Problem Category CodeChef
Input Format
- The first line contains denoting the number of test cases. Then the test cases follow.
- The first and only line of each test case contains a single integer .
Output Format
For each test case, output in a single line the category of Chef's problem, i.e whether it is an Easy
, Medium
or Hard
problem. The output is case sensitive.
Constraints
Subtasks
- Subtask 1 (100 points): Original constraints
Sample 1:
Input
Output
3
50
172
201
Easy
Medium
Hard
Explanation:
Test case : The problem with rating is an easy problem as .
Test case : The problem with rating is a medium problem as .
Test case : The problem with rating is a hard problem as .
ANSWER