/* 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 = 90;
		
		String drinkNames[] = {"капучино", "эспрессо", "вода", "чай"};
		int drinkPrices[] = {140, 80, 20, 40};
		
		boolean canBuyAnything = false;
		for(int i = 0; i < drinkNames.length; i = i + 1)
		{
			if(moneyAmount >= drinkPrices[i]) {
				System.out.println("Вы можете купить " + drinkNames[i]);
				canBuyAnything = true;
			}
		}
		
		if(!canBuyAnything) {
			System.out.println("Внесите ещё немного денег");
		}
	}
}