snow = [3, 3, 6]

if snow[0] == snow[1] == snow[2]:
    money = 10000 + snow[0] * 1000

elif snow[0] == snow[1] or snow[0] == snow[2]:
    money = 1000 + snow[0] * 100
elif snow[1] == snow[2]:
    money = 1000 + snow[1] * 100


else:
    money = max(snow) * 100

print(money)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: