public static void Main()
Console.WriteLine("Hello, and welcome to Big Taco!");
Console.WriteLine("What's your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name + ", heres our 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 do you want?");
a = int.Parse(Console.ReadLine());
Console.WriteLine("How many Chicken Tacos do you want?");
b = int.Parse(Console.ReadLine());
Console.WriteLine("How many Veggie Tacos do you want?");
c = int.Parse(Console.ReadLine());
Console.WriteLine("How many Chocolate chip cookies do you want?");
d = int.Parse(Console.ReadLine());
Console.WriteLine("How many Sodas do you want?");
e = int.Parse(Console.ReadLine());
Console.WriteLine("How many Waters do you want?");
f = int.Parse(Console.ReadLine());
sum = au + bv + cw + dx + ey + fz;
Console.WriteLine("The price of your order is " + sum);
Console.WriteLine("Now we only have to add the 16% of IVA");
Console.WriteLine("Your IVA equals: " + IVA2);
Console.WriteLine("Okay so... the total is " + total);
Console.WriteLine("Thank you for comming to Big Taco, " + name + "!");
Console.WriteLine("You were attended by Vania García");