/* 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 = 60;
		
		int cappucinoPrice = 150;
		int americanoPrice = 80;
		int appleJuicePrice = 70;
		int milkPrice = 20;
		int watehPrice = 10;
		
	    boolean	canBuyAnything = false;
		
		if(moneyAmount >= cappucinoPrice) {
	    	System.out.println("Вы можете купить капучино");
	    	canBuyAnything = true;
	}
	
	    if(moneyAmount >= americanoPrice) {
	    	System.out.println("Вы можете купить американо");
	    	canBuyAnything = true;
	}
	
	    if(moneyAmount >= appleJuicePrice) {
	    	System.out.println("Вы можете купить яблочный сок");
	    	canBuyAnything = true;
	}
		if(moneyAmount >= milkPrice) {
	    	System.out.println("Вы можете купить молоко");
	    	canBuyAnything = true;
	}
		if(moneyAmount >= watehPrice) {
	    	System.out.println("Вы можете купить воду");
	    	canBuyAnything = true;
	}
	
	if (canBuyAnything == false) {
	    	System.out.println("Недостаточно средств");
	}
	}
}	
