s = int(input("Enter vehicle speed: ")) if s <= 50: print("No fine") elif s <= 55: print("Just a Caution") elif s <= 60: print("$200 fine") else: print("$1000 fine")