/* 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 myArray[];
		myArray = new int[4];
		
		int moneyAmount = 12;
		
		for (int i = 0; i < 4; i++)
		{
			myArray[0] = 80;
			myArray[1] = 150;
			myArray[2] = 20;
			myArray[3] = 50;
		}
		
		boolean canBuyAnything = false;
		
		if(moneyAmount >= myArray[0]) {
			System.out.println("Вы можете купить эспрессо");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= myArray[1]) {
			System.out.println("Вы можете купить капучино");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= myArray[2]) {
			System.out.println("Вы можете купить воду");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= myArray[3]) {
			System.out.println("Вы можете купить молоко");
			canBuyAnything = true;
		}
		
		if(canBuyAnything == false) {
			System.out.println("Недостаточно средств :( Учите джаву и зарабатывайте много! :))");
		}
	}
}