# your code goes here
print("Кофе-машина")
		
money_amount = 100

cappucino_price = 150
espresso_price = 80
water_price = 20
orangejuice_price = 50

can_buy_something = False

if money_amount >= cappucino_price:
	print("Вы можете купить капучино")
	can_buy_something = True

if money_amount >= espresso_price:
	print("Вы можете купить эспрессо")
	can_buy_something = True

if money_amount >= water_price:
	print("Вы можете купить воду")
	can_buy_something = True
	
if money_amount >= orangejuice_price:
	print("Вы можете купить апельсиновый сок")
	can_buy_something = True

if can_buy_something == False:
	print("Недостаточно средств :( Изучайте Python и зарабатывайте много!))")