Answer:def Get_Winnings(m):
if m == "1": return 75000
elif m == "2":
return 150000
elif m == "3":
return 225000
elif m == "4":
return 300000
elif m == "5":
return 375000
else:
return "Invalid"
MAIN
medals = input("Enter Gold Medals Won: ")
num = Get_Winnings(medals)
print("Your prize money is: " + str(num))
exp: looking through this this anwser seemes without flaws and i dont follow
if you can provide what you are not understanding ican an help