Chef is planning a family picnic. He will go to the picnic only if the temperature on that day is strictly greater than 2424 degrees.
Given that the temperature on a day is X degrees, find whether he will go to the picnic on that day.
Input Format
- The first line of input will contain a single integer T, denoting the number of test cases.
- Each test case consists of a single integer X – the temperature on a given day.
Output Format
For each test case, output on a new line, YES
, if Chef will go to the picnic, and NO
otherwise.
You may print each character in uppercase or lowercase. For example, NO, no, No,
and nO,
are all considered the same.
Constraints
- 1≤�≤1001≤T≤100
- 1≤�≤1001≤X≤100
Sample 1:
Input
Output
4 12 24 25 60
NO NO YES YES
Explanation:
Test case 11: The temperature on the day is 1212 which is not >24>24. Thus, Chef will not go to the picnic.
Test case 22: The temperature on the day is 2424 which is not >24>24. Thus, Chef will not go to the picnic.
Test case 33: The temperature on the day is 2525 which is >24>24. Thus, Chef will go to the picnic.
Test case 44: The temperature on the day is 6060 which is >24>24. Thus, Chef will go to the picnic.