speed = int(input("You are in a 50 zone how fast are you going?: ")) if speed <= 50: print("Good no fine") elif speed <= 55: print("Just a warning slow down") elif speed <= 60: print("$200 fine") elif speed >= 61: print("$1000 fine brokie") complete