Hide
Problem B
Fair Grading

Input
The input consists of a single line containing three integers, $x$, $y$, and $z$ $(0 \leq x,y,z \leq 100)$—the student’s grades on the first midterm, second midterm, and final exam, respectively.
Output
The first and only line of output should contain a single character, the letter grade achieved by the student.
Sample Input 1 | Sample Output 1 |
---|---|
87 93 90 |
A |
Sample Input 2 | Sample Output 2 |
---|---|
91 78 56 |
C |