Chef's phone shows a Battery Low notification if the battery level is
or less.
Given that the battery level of Chef's phone is , determine whether it would show a Battery low notification.
Input Format
- First line will contain , number of test cases. Then the test cases follow.
- Each test case contains a single line of input, an integer , denoting the battery level of the phone.
Output Format
For each test case, output in a single line , if the battery level is or below. Otherwise, print .
You may print each character of and in uppercase or lowercase (for example, , , will be considered identical).
Constraints
Subtasks
Subtask #1 (100 points): original constraints
Sample Input 1
3
15
3
65
Sample Output 1
Yes
Yes
No
Explanation
Test Case 1: The battery level is . Thus, it would show a battery low notification.
Test Case 2: The battery level is , which is less than . Thus, it would show a battery low notification.
Test Case 3: The battery level is , which is greater than . Thus, it would not show a battery low notification.
No comments:
Post a Comment