speed = int (input( "what is the vehicle speed ")) if speed <= 50 : print("no fine") elif speed <= 55 : print("Just a caution") elif speed <= 60 : print ("$200 fine") else : print ("$1000 fine")