/* 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("Ohoho nice coffee is afforded");
		
		int moneyAmount = 10;
		
		int espressoPrice = 60;
		int americanoPrice = 100;
		int waterPrice = 20;
		int milkPrice = 40;
		
		boolean canbuyanything = false;
		
		if(moneyAmount >= espressoPrice) 
		{
			System.out.println("You can buy espresso");
			canbuyanything = true;
		}
		
		if(moneyAmount >= waterPrice) 
		{
			System.out.println("You can buy water");
			canbuyanything = true;
		}
			if(moneyAmount >= milkPrice) {
			System.out.println("You can buy milk");
			canbuyanything = true;
		}
		
		if (!canbuyanything) {
		System.out.println("Not enough money");
	}
	}
}