#K2241. Marathon Level Determination
Marathon Level Determination
Marathon Level Determination
Haruto is preparing for his next marathon and needs to choose the appropriate competition level based on his current running time in minutes. The levels are determined as follows:
- Level A: When \(T < 30\) minutes
- Level B: When \(30 \le T \le 60\) minutes
- Level C: When \(T > 60\) minutes
Your task is to write a program that reads an integer \(T\) from the standard input and outputs the corresponding level. The answer should be output to the standard output. Make sure your solution works correctly for all edge cases.
inputFormat
The input consists of a single integer \(T\), representing Haruto's current marathon time in minutes.
Input is provided via standard input.
outputFormat
Output the corresponding marathon level as a string: either "Level A", "Level B", or "Level C". The output should be written to standard output.
## sample29
Level A