print ("You have memes. How many memes? Pick a number 1-100.")
memes = int (input ("How many memes do you have? "))
while memes > 0 and memes < 101:
print ("There are items for sale. You can buy items in exchange for your memes.")
print ("There is a big plushie of an unknown Computer Science teacher that costs 50 memes.")
print ("There is also a coding sheet that costs 25 memes.")
print ("There is also a raspberry pie (whether or not it's the actual pie or the computer piece is debatable), costing 12 memes.")
print ("There is also a bucket of candy that costs 6 memes.")
print ("Finally, there is a mysterious creature in the corner of the store that costs 3 memes. It's seemingly harmless. Seemingly...")
purchase = int (input ("What would you like to buy? Pick an option 1-6. 6 means you do not wish to purchase any more items. "))
if purchase == 1:
memes = memes - 50
print ("Thank you for your purchase! You now have", memes, "memes.")
elif purchase == 2:
memes = memes - 25
print ("Thank you for your purchase! You now have", memes, "memes.")
elif purchase == 3:
memes = memes - 12
print ("Thank you for your purchase! You now have", memes, "memes.")
elif purchase == 4:
memes = memes - 6
print ("Thank you for your purchase! You now have", memes, "memes.")
elif purchase == 5:
memes = memes - 3
print ("Thank you for your purchase! You now have", memes, "memes.")
elif purchase == 6:
print ("Thank you for shopping at Ceilingmart.")
break
if memes == 0:
print ("However,")
print ("You cannot buy anything else. You now have bad credit and cannot get meme loans. Your life is ruined and now ultimately pointless.")
elif memes > 100:
print ("Bro is NOT Iceu"); PYTHON CODE IS INFURIATING BUT THAT SHI BE FUN SOMETIMES
WATCH THIS