speed = int(input("Enter Vechicle Speed")) if speed <=50 : print("no fine") elif speed <=55 : print("just a caution") elif speed <60 : print("$200 fine") elif speed >60 : print("$1000 fine")