/* 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
	{
	  
		int moneyAmount = 500;
		
		
		System.out.println("Кофе-машина");
		
		
		int mineralWaterPrice = 20;
		int teaPrice = 30;
		int americanoPrice = 100;
		int coppucinoPrice = 150;
		int milkPrice = 25;
		
		boolean canBuyAnything = false;
	
		
		if (moneyAmount >= mineralWaterPrice) {
			System.out.println("Вы можете купить минеральную воду");
			canBuyAnything = true;
		}
		if (moneyAmount >= teaPrice) {
			System.out.println("Вы можете купить чай");
			canBuyAnything = true;
		}
		if (moneyAmount >= americanoPrice) {
			System.out.println("Вы можете купить американо");
			canBuyAnything = true;
		}
		if (moneyAmount >= coppucinoPrice) {
			System.out.println("Вы можете купить капучино");
			canBuyAnything = true;
		}
		if (moneyAmount >= coppucinoPrice) {
			System.out.println("Вы можете купить молоко");
			canBuyAnything = true;
		}	
		if(canBuyAnything == false) {
			System.out.println("Недостаточно средств! РАБОТАТЬ!");
		}
		
		
	}
}