using System; namespace _1._Computer_Store { class Program { static void Main(string[] args) { string client = Console.ReadLine(); double priceWithoutTax = 0; double tax = 0; double sumTax = 0; double totalPrice = 0; while (client != "regular" && client != "special") { double price = double.Parse(client); if (price < 0) { Console.WriteLine("Invalid price!"); client = Console.ReadLine(); } else { priceWithoutTax = priceWithoutTax + price; tax = 0.2 * price; sumTax = sumTax + tax; totalPrice = totalPrice + (price * 1.2); client = Console.ReadLine(); } } if (totalPrice == 0) { Console.WriteLine("Invalid order!"); } else if (client == "special") { totalPrice = totalPrice * (0.9); Console.WriteLine("Congratulations you've just bought a new computer!"); Console.WriteLine($"Price without taxes: {priceWithoutTax}$"); Console.WriteLine($"Taxes: {sumTax:F2}$"); Console.WriteLine("-----------"); Console.WriteLine($"Total price: {totalPrice:F2}$"); } else if (client == "regular") { Console.WriteLine("Congratulations you've just bought a new computer!"); Console.WriteLine($"Price without taxes: {priceWithoutTax}$"); Console.WriteLine($"Taxes: {sumTax:F2}$"); Console.WriteLine("-----------"); Console.WriteLine($"Total price: {totalPrice:F2}$"); } } } }