public static void Main()
string date = DateTime.UtcNow.ToString("MM-dd-yyyy");
double a, d, e, f, g, h, i, j, k, l, m, n, o, t, dd, w;
Console.Write("Input client's 5 digit account number: ");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("Input client's first name: ");
Console.Write("Input client's last name: ");
Console.Write("Input the amount of pounds of corn the client wants to buy: ");
d = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the amount of pounds of wheat the client wants to buy: ");
e = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the amount of pounds of soybean the client wants to buy: ");
f = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("PRICE LIST:");
Console.WriteLine("CORN....................................$ 3.70 PER POUND");
Console.WriteLine("WHEAT...................................$ 1.80 PER POUND");
Console.WriteLine("SOYBEAN.................................$ 2.80 PER POUND");
Console.WriteLine("Current date...................................................{0}", date);
Console.WriteLine("Client's Name..................................................{0} , {1}", c, b);
Console.WriteLine("Client's account number........................................{0}", a);
Console.WriteLine("Amount of corn purchaased in weight............................{0}", d);
Console.WriteLine("Amount of Wheat purchaased in weight...........................{0}", e);
Console.WriteLine("Amount of Soybean purchaased in weight.........................{0}", f);
Console.WriteLine("The dollar amount of corn purchaased...........................{0:f2}", g);
Console.WriteLine("The dollar amount of wheat purchaased..........................{0:f2}", h);
Console.WriteLine("The dollar amount of soybean purchaased........................{0:f2}", i);
Console.WriteLine("What % taxed was levied........................................{0}%", aa);
Console.WriteLine("What dollar amount of taxed was levied.........................${0:f2}", t);
Console.WriteLine("What was the total amount of discount was given................${0:f2}", dd);
Console.WriteLine("Total amount client owes.......................................${0:f2}", w);
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");