public static void Main()
Console.WriteLine("Produce weight: ");
produceWeight = Convert.ToDouble(Console.ReadLine());
Console.Write("Price of produce: ");
producePrice = Convert.ToDouble(Console.ReadLine());
Console.Write("Bag Price: ");
bagPrice = Convert.ToDouble(Console.ReadLine());
Console.Write("Bag capacity: ");
bagCapacity = Convert.ToDouble(Console.ReadLine());
bagOverflow = produceWeight % bagCapacity;
totalCostofSale = (Math.Ceiling((produceWeight / bagCapacity)) * bagPrice) + producePrice;
Console.WriteLine("The total cost of the sale is: " + totalCostofSale );