public static void Main()
double asada2, chicken2, veggie2, cookie2, soda2, water2, producta, productc, productv, productc2, products, productw, total, sum, iva;
Console.WriteLine("Welcome to 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());
producta = asada * asada2;
Console.WriteLine("How many chicken tacos you want?");
chicken = int.Parse(Console.ReadLine());
productc = chicken * chicken2;
Console.WriteLine("How many veggie tacos you want?");
veggie = int.Parse(Console.ReadLine());
productv = veggie * veggie2;
Console.WriteLine("How chocolate chip cookies you want?");
cookie = int.Parse(Console.ReadLine());
productc2 = cookie * cookie2;
Console.WriteLine("How many sodas you want?");
soda = int.Parse(Console.ReadLine());
Console.WriteLine("How many water bottles you want");
water = int.Parse(Console.ReadLine());
productw = water * water2;
sum = producta + productc + productv + productc2 + products + productw;
Console.WriteLine("SUBTOTAL: $" + sum );
Console.WriteLine("IVA: $" + iva);
Console.WriteLine("TOTAL: $" + total);