#C9534. Runner Finish Time Categorization
Runner Finish Time Categorization
Runner Finish Time Categorization
You are given the finish time of a runner in minutes as an integer input. Based on the finish time, classify the runner into one of the following four categories:
- Elite Runner: if \( finish\_time < 180 \)
- Competitive Runner: if \( 180 \le finish\_time < 240 \)
- Average Runner: if \( 240 \le finish\_time < 300 \)
- Casual Runner: if \( finish\_time \ge 300 \)
Your task is to read a single integer from the standard input and output the corresponding runner category to the standard output.
inputFormat
The input consists of a single integer ( finish_time ) which represents the time (in minutes) taken by the runner to finish the race.
outputFormat
Output a single string denoting the runner's category. The possible outputs are "Elite Runner", "Competitive Runner", "Average Runner", and "Casual Runner".## sample
179
Elite Runner