speed = int(input("Enter the speed of the car : ")) if speed <= 50: print( "No fine." ) elif 51 <= speed <= 55: print( "Just a caution." ) elif 56 <= speed <= 60: print( "$200 fine." ) else: print( "$1000 fine." )