while True: speed = int(input("Enter vehicle speed: ")) if speed > 60: print("$1000 fine") elif speed > 55: print("$200 fine") elif speed > 50: print("Caution") elif speed < 51: print("No fine")