public static void Main()
Console.WriteLine("Welcome the costumer to the restaurant THE BIG TACO");
Console.WriteLine("What´s your name?");
name = Console.ReadLine();
Console.WriteLine("Welcome " + name+ "," + "THE BIG TACO PRESENTS YOU ITS MENU");
Console.WriteLine("Asada Taco ......... $28.50");
Console.WriteLine("Chicken Taco ......... $21.50");
Console.WriteLine("Veggie Taco ........... $18.50");
Console.WriteLine("Chocolate chip cookie ..... $12.00");
Console.WriteLine("Soda ................................... $15.50");
Console.WriteLine("Water ................................. $11.00");
Console.WriteLine("How many Asada Tacos you want?");
Console.WriteLine("How many Chicken Tacos you want?");
Console.WriteLine("How many Veggie Taco you want?");
Console.WriteLine("How many Chocolate chip cookie you want?");
Console.WriteLine("How many Soda you want?");
Console.WriteLine("How many Water you want?");