spd = int(input("enter vehicle speed ")) if spd < 51 : print("no fine") elif spd < 56 : print("just a caution") elif spd < 61 : print("200$ fine") elif spd > 60 : if spd == 69 : print("actually that's pretty cool, your free to go") else : print("1000$ fine")