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 = 10;
		
		int espressoPrice = 40;
		int lattePrice = 120;
		int waterPrice = 30;
		int milkPrice = 10;
		
		boolean canBuyAnything = false;
		
		if(moneyAmount >= espressoPrice) {
			System.out.println("Вы можете купить эспрессо");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= lattePrice) {
			System.out.println("Вы можете купить латте");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= waterPrice) {
			System.out.println("Вы можете купить воду");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= milkPrice) {
			System.out.println("Вы можите купить молоко");
			canBuyAnything = true;
			
		}
		if(!canBuyAnything) {
			System.out.println("Недостаточно средств! Учите джаву и идите работать!");
		}
	}
}