/* 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 = 120;
		int waterPrice = 30;
		int espressoPrice = 55;
		int milkPrice = 43;
		
		boolean canBuyAnything = false;
		
		if (moneyAmount >= waterPrice) 
		{
			System.out.println("Твои слова — водица, так не годится!");
			canBuyAnything = true;
		}
		if (moneyAmount >= espressoPrice) 
		{
			System.out.println("Не путай с экспрессом");
			canBuyAnything = true;
		}
		if (moneyAmount >= milkPrice) 
		{
			System.out.println("Ваше молоко. Без пенки.");
			canBuyAnything = true;
		}
		if (canBuyAnything == false) 
		{
			System.out.println("Бездарь! Даже на водицу денег не хватило! Иди работай!!!");
		}
		
	}
}