<?php

print("Кофе-машина\n");

$moneyAmount = 120;

$cappucinoPrice = 200;
$espressoPrice = 100;
$waterPrice = 50;
$teaPrice = 30;

if ($moneyAmount >= $cappucinoPrice) {
	print("Вы можете купить капучино\n");
}

if ($moneyAmount >= $espressoPrice) {
	print("Вы можете купить эспрессо\n");
}

if ($moneyAmount >= $teaPrice) {
	print("Вы можете купить чай\n");
}

if ($moneyAmount >= $waterPrice) {
	print("Вы можете купить воду\n");
}