x = input("Enter a number: ")
x = float(x)

if x >= 50 and x <= 59:
	print(x, "is between 50 and 59, inclusive")
	print("Well done!")
else:
	print(x, "is not between 50 and 59, inclusive")
