using System;
public class Program
{
public static void Main()
string one="Lemon Tea";
string two="Milk Tea";
string three="Green Tea";
Console.Write("MENU\n");
Console.WriteLine("[1] "+one);
Console.WriteLine("[2] "+two);
Console.WriteLine("[3] "+three);
}