/* 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("Кофе-машина");
		
		boolean canBuyAnything = false;
		
		int moneyAmount = 100;
		
		String[] drinks = {"капучино", "эспрессо", "латте", "вода", "молоко"};
		int[] prices = {60, 80, 150, 20, 30};
 
		for( int i = 0; i < 5; i = i + 1)
		{
			if(moneyAmount >= prices[i])
			{
				System.out.println("Вы можете купить" + " " + drinks[i]);
				canBuyAnything = true;
			}
		}
		
		if(canBuyAnything == false) {
			System.out.println("Недостаточно средств!");
		}
	}
}