galleons = 8

if galleons < 5:
    print("You cannot afford a new quill.")
elif galleons == 5:
    print("Exact change for one quill!")
elif galleons > 20:
    print("Splurge at Flourish and Blotts!")
else:
    print("Save up a little more.")

# != means "not equal"
house = "Slytherin"
if house != "Gryffindor":
    print("Different common room rules apply.")
