- You are given as input marks of a student.
- Display an appropriate message based on the following rules:
- for marks above 90, print excellent.
- for marks above 80 and less than equal to 90, print good.
- for marks above 70 and less than equal to 80, print fair.
- for marks above 60 and less than equal to 70, print meets expectations.
- for marks less than equal to 60, print below par.
Input Format:
Input is handled for you and provided as variable marks
Output Format:
Appropriate message as per student's marks
Example:
Input: 92 Output: excellent
Constraints:
No Constraints