speed = int (input ("Enter vehicle speed: " )) if speed <= 50: print("All good :)") elif speed <= 55: print("Just a caution") elif speed <= 60: print("$200 FINE!") elif speed <= 1000: print("$1000 FINE! >:( ")