speed = int(input("Enter vechile speed: ")) if speed < 50 : print("You have no fine") elif speed < 55 : print("You have just a caution") elif speed < 59 : print("Your fine is $200") else : print("Your fine is $1000")