To access CRED programs, one needs to have a credit score of
or more.Given that the present credit score is
, determine if one can access CRED programs or not.
If it is possible to access CRED programs, output
, otherwise output.
Input Format
The first and only line of input contains a single integer
, the credit score.
Output Format
.
You may print each character of the string in uppercase or lowercase (for example, the strings
, , andwill all be treated as identical).
Constraints
Subtasks
- Subtask 1 (100 points): Original constraints.
Sample Input 1
823
Sample Output 1
YES
Explanation
Since
, it is possible to access CRED programs.
Sample Input 2
251
Sample Output 2
NO
Explanation
Since
, it is not possible to access CRED programs
No comments:
Post a Comment