import java.util.*;
import java.lang.*;
import java.io.*;
 
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("Кофе-машина");
 
		int moneyAmount = 5;
 
		int cappucinoPrice = 100;
		int espressoPrice = 89;
		int waterPrice = 10;
		int milkPrice = 40;
 
		boolean canBuyAnything = false;
 
		if(cappucinoPrice <= moneyAmount) {
			System.out.println("Вы можете купить капучино!");
			canBuyAnything = true;
		}
 
		if(espressoPrice <= moneyAmount) {
			System.out.println("Вы можете купить эспрессо!");
			canBuyAnything = true;
		}
 
		if(waterPrice <= moneyAmount) {
			System.out.println("Вы можете купить воду!");
			canBuyAnything = true;
		}
 
		if(milkPrice <= moneyAmount) {
			System.out.println("Вы можете купить молоко!");
			canBuyAnything = true;
		}
 
		if(!canBuyAnything) {
			System.out.println("Вы не можете ничего купить! Учите джаву и идите зарабатывать деньгить!");
		}
	}
}