public static void Main()
Console.WriteLine("Въведете продукт.");
var product = Console.ReadLine().ToLower();
Console.WriteLine("Въведете град.");
var town = Console.ReadLine().ToLower();
Console.WriteLine("Въведете брой на продукта.");
var quantity = double.Parse(Console.ReadLine());
{ Console.WriteLine (0.50 * quantity); }
{ Console.WriteLine (0.80 * quantity); }
{ Console.WriteLine (1.20 * quantity); }
{ Console.WriteLine (1.45 * quantity); }
if (product == "peanuts")
{ Console.WriteLine (1.60 * quantity); }
{ Console.WriteLine (0.40 * quantity); }
{ Console.WriteLine (0.70 * quantity); }
{ Console.WriteLine (1.15 * quantity); }
{ Console.WriteLine (1.30 * quantity); }
if (product == "peanuts")
{ Console.WriteLine (1.50 * quantity); }
{ Console.WriteLine (0.45 * quantity); }
{ Console.WriteLine (0.70 * quantity); }
{ Console.WriteLine (1.10 * quantity); }
{ Console.WriteLine (1.35 * quantity); }
if (product == "peanuts")
{ Console.WriteLine (1.55 * quantity); }