<?php

# your code goes here
print("Кофе-машина");
		
$moneyAmount = 1200;

$cappucinoPrice = 150;

$canBuySomething = false;

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