/* 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("Кофе-машина"); // your code goes here
		
		int MoneyAmount = 250;
		System.out.println("Вы внесли " + MoneyAmount + " рублей");
		
		int CappucinoPrice = 150;
		int EspressoPrice = 90;
		int WaterPrice = 20;
		int TeaPrice = 220;
		
		if (MoneyAmount >= CappucinoPrice) {
			System.out.println("Вы можете приобрести Каппучино за " + CappucinoPrice + " рублей");
		}
		if (MoneyAmount >= EspressoPrice) {
			System.out.println("Вы можете приобрести Эспрессо за " + EspressoPrice + " рублей");
		}
		if (MoneyAmount >= WaterPrice) {
			System.out.println("Вы можете приобрести Воду за " + WaterPrice + " рублей");
		}
		if (MoneyAmount >= TeaPrice) {
			System.out.println("Вы можете приобрести Чай за " + TeaPrice + " рублей");
		}
	}
}