CodechefAug 15, 2025

October Marathon

Hazrat Ali

Codechef

The participants receive medals on completing the marathon as following:

  • If the total time taken is less than 3 hours, they receive a GOLD medal.
  • If the total time taken is greater than equal to 3 hours but less than 66 hours, they receive a SILVER medal.
  • If the total time taken is greater than equal to 6 hours, they receive a BRONZE medal.

Chefina participated in the marathon and completed it in X hours. Which medal would she receive?

Input Format

  • The input consists of a single integer X — the number of hours Chefina took to complete the marathon.

Output Format

Output the medal Chefina would recieve.

Note that you may print each character in uppercase or lowercase. For example, the strings GOLDgoldGold, and gOlD are considered the same.

Constraints

  • 1≤X≤10

Sample 1:

Input
2
Output
 
GOLD

Explanation:

Chefina completed the marathon in less than 33 hours. Thus, she gets a GOLD medal.

Sample 2:

Input
5
Output
 
 
SILVER

Explanation:

Chefina took more than 33 but less than 66 hours. Thus, she gets a SILVER medal.

Sample 3:

Input
6
Output
 
BRONZE


Solution

X = int(input())

if X < 3:
    print("GOLD")
elif X < 6:
    print("SILVER")
else:
    print("BRONZE")




Comments