Problem4509--成绩等第

4509: 成绩等第

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

给定一个在 lns="http://www.w3.org/1998/Math/MathML">0 到 lns="http://www.w3.org/1998/Math/MathML">100 之间的整数 lns="http://www.w3.org/1998/Math/MathML">a,请将它转成等第,规则如下:

  • lns="http://www.w3.org/1998/Math/MathML">90 或以上为 A
  • lns="http://www.w3.org/1998/Math/MathML">80 或以上为 B
  • lns="http://www.w3.org/1998/Math/MathML">70 或以上为 C
  • lns="http://www.w3.org/1998/Math/MathML">60 或以上为 D
  • lns="http://www.w3.org/1998/Math/MathML">59 或以下为 F

Input


  • 单个数字表示 lns="http://www.w3.org/1998/Math/MathML">a

0≤a≤100



Output

  • 单个字符表示答案

Sample Input Copy

93

Sample Output Copy

A

Source/Category