numMugs = int(input("How many mugs do you own? "))
if numMugs > 0:
if numMugs > 10:
print("You must have a lot of mugs!")
print("You must enjoy coffee/tea!")
else:
print("You must not enjoy coffee or tea.")

Q&A Education