/* 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 = 55;
		
		int hotMilk = 55;
		int beansMilk = 170;
		int coolMilk = 12;
		
		boolean canBuyAnything = false;
		
		if(moneyAmount >= hotMilk) {
			System.out.println("Вы можите и должны купить горячие молоко  ");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= beansMilk) {
			System.out.println("Вы можете и хотите купить бобовое молоко");
			canBuyAnything = true;
		}
		
		if(moneyAmount >= coolMilk) {
			System.out.println("Вы можете купить холодное молоко ");
			canBuyAnything = true;
		}
		
		if(canBuyAnything == false) {
			System.out.println("Недостаточно средств! Возмите кредит :(");
		}
	}
}