public static void Main(string [] args)
Console.WriteLine("Enter the number of packs");
int packs = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the weight of the packages in pounds");
int packageweight = Convert.ToInt32(Console.ReadLine());
int TotalPackage = (packageweight *packs);
int PoundtoOunce = (ounce * TotalPackage);
Console.WriteLine("Your packages' pound to ounce Conversion is: " + PoundtoOunce);
decimal CostOunce = 0.25M;
decimal TotalCost = ( CostOunce * PoundtoOunce);
Console.WriteLine("The total cost of the Production run is: " + TotalCost);
decimal SellOunce = 0.55M;
decimal TotalRevenue = (SellOunce * PoundtoOunce);
Console.WriteLine("The Total Revenue is: " + TotalRevenue);
decimal TotalProfit = (TotalRevenue - TotalCost);
Console.WriteLine("The total Profit is: " + TotalProfit);