/* package whatever; // don't place package name! */
 
import java.util.*;
import java.lang.*;
import java.io.*;
 
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("<= Кофе-машина =>");
 
		int moneyAmount = 150;
 
		int espressoPrice = 80;
		int cappucinoPrice = 150;
		int waterPrice = 20;
		int milkPrice = 40;
 
		boolean canBuyAnything = false;
 
		if(moneyAmount >= 1){
			System.out.println("Вы можете купить");
			canBuyAnything = true;
		}
 
		if(moneyAmount >= espressoPrice) {
			System.out.println("- эспрессо");
			canBuyAnything = true;
		}
 
		if(moneyAmount >= cappucinoPrice) {
			System.out.println("- капучино");
			canBuyAnything = true;
		}
 
		if(moneyAmount >= waterPrice) {
			System.out.println("- воду");
			canBuyAnything = true;
		}
 
		if(moneyAmount >= milkPrice) {
			System.out.println("- молоко");
			canBuyAnything = true;
		}
 
		if(canBuyAnything == false) {
			System.out.println("Недостаточно средств");
		}
	}
}