print("You we just pulled over by the police, how fast were you going in the 50km area?") speed = int(input("ENTER: ")) if speed <= 50 : print("No fine") elif speed >= 51 and speed <= 55 : print("CAUTION") elif speed >= 56 and speed <= 60 : print("Fine is $200") elif speed > 60 : print("Fine is $1000")