1270: (2026)实验1-1B 心率字符分类 / Heart Rate Character Classification

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:47 Solved:23

Description

【中文题面】
输入一个整数,表示某人的心率(单位:bpm)。
若心率小于 55,输出字符 A;
若心率大于等于 55 且不超过 95,输出字符 B;
若心率大于 95,输出字符 C。
本题只输出一个字符。
[English Description]
Input an integer representing a person's heart rate in bpm.
If the heart rate is less than 55, output character A.
If the heart rate is between 55 and 95 inclusive, output character B.
If the heart rate is greater than 95, output character C.
Output only one character.

Input

【输入】
输入一个整数,表示心率值。
[Input]
One integer, the heart rate value.

Output

【输出】
输出一个字符:A、B 或 C。
[Output]
Output one character: A, B, or C.

Sample Input Copy

55

Sample Output Copy

B