using System.Collections.Generic;
public static void Main()
List<string> MenuList = new List<string>();
MenuList.Add(" #1_Sparkling Water");
MenuList.Add(" #2_ChocolateCake ");
MenuList.Add(" #3_CoffeMilk ");
List<int> priceMenuList = new List<int>();
List<int> amountList = new List<int>();
Console.WriteLine("Welcom to Cafe, Please Order Now !!!");
Console.WriteLine(MenuList[0] + " (" + priceMenuList[0] + ") : ");
amountList.Add(Convert.ToInt32(Console.ReadLine()));
Console.WriteLine(MenuList[1] + " (" + priceMenuList[1] + ") : ");
amountList.Add(Convert.ToInt32(Console.ReadLine()));
Console.WriteLine(MenuList[2] + " (" + priceMenuList[2] + ") : ");
amountList.Add(Convert.ToInt32(Console.ReadLine()));
Console.WriteLine(".........................");
Console.WriteLine("Your Order is here.");
for (int i = 0; i < MenuList.Count; i++)
Console.Write(MenuList[i] + "x" + amountList[i] + " ");
TotalPrice = TotalPrice + (priceMenuList[i] * amountList[i]);
Console.WriteLine(".........................");
Console.WriteLine("Total Price is : " + TotalPrice);
Console.WriteLine(".........................");
Console.WriteLine("THANK YOU FOR CHOOSING US");
String x = Console.ReadLine();