import random speed1 = int(input("Enter vehicle speed: ")) if speed1 <= 50: print("no fine") elif speed1 >= 50 and speed1 <= 51: print("slow down next time") elif speed1 >= 56 and speed1 <= 59: print("fine is $200") elif speed1 >= 60 and speed1 <= 100: print("fine is $1000") else: print("have a good rest of your day")