speed = int( input( "Enter vehicle speed:")) if speed == ("0-50") : print (" No Fine") elif speed == ("51-55") : print ("Just a caution ") elif speed == ("56-60") : print ("Fine is $200") else : print (" Fine is $1000")