speed = int(input("Pick a speed of a car that just pulled over by the police in a 50km/h area.")) if speed <= 50: print("You where going", speed, "No fine!!") elif speed <= 55: print("You where going", speed, "Just a caution!!") elif speed <= 60: print("You where going", speed, "$200 fine!!") else: print("You where going", speed, "$1000 fine!!")