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?");
Asada = int.Parse(Console.ReadLine());
Console.WriteLine("How many Chicken Tacos you want?");
Chicken = int.Parse(Console.ReadLine());
Console.WriteLine("How many Veggie Taco you want?");
Veggie = int.Parse(Console.ReadLine());
Console.WriteLine("How many Chocolate chip cookie you want?");
Chocolate= int.Parse(Console.ReadLine());
Console.WriteLine("How many Soda you want?");
Soda = int.Parse(Console.ReadLine());
Console.WriteLine("How many Water you want?");
Water = int.Parse(Console.ReadLine());
subtotal = Asada *28.50 + Chicken *21.50 + Veggie *18.50 + Chocolate *12.00 + Soda *15.50 + Water *11.00;
Console.WriteLine(" Your subtotal is: " + subtotal);
Console.WriteLine("Your IVA is : " + IVA);
Console.WriteLine("Your total is : " +( subtotal + IVA));
Console.WriteLine(" Thanks " + name + ",");
Console.WriteLine(" You´re attenden by Fernanda");