speed = int (input( "What is the speed of the car: " )) if speed <= 50: print("No Fine") elif speed <= 55: print("Just a Caution") elif speed <=60: print("$200 Fine") else: print("$1000 Fine")