# [ ] create, call and test Cheese Order
minimun = 0
maximun = 100
question = input("how many pounds of cheese do you want")
if int(question) < minimun:
print("you need to order a positive number of cheese")
elif int(question) > maximun:
print("you ordering to much cheese")
else:
print("You're ordering", question, "pounds of cheese amount of cheese")