public static void Main()
double txp, tx, dis1, dis2, dis, dc, dw, ds, fo, cw, t;
d = DateTime.UtcNow.ToString("MM-dd-yyyy");
Console.Write("Input the client's 5 digit account number: ");
Console.Write("Input the client's first name: ");
Console.Write("Input the client's last name: ");
Console.Write("Input the amount of pounds of corn the client wants to buy: ");
pc = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the amount of pounds of wheat the client wants to buy: ");
pw = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the amount of pounds of soybean the client wants to buy: ");
ps = 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}", d);
Console.WriteLine("Client's Name:......................................{0}, {1}", ln, fn);
Console.WriteLine("Client's account number.............................{0}", an);
Console.WriteLine("Amount of corn purchased in weight..................{0} lbs.", pc);
Console.WriteLine("Amount of wheat purchased in weight.................{0} lbs.", pw);
Console.WriteLine("Amount of soybean purchased in weight...............{0} lbs.", ps);
Console.WriteLine("Dollar amount of corn purchased:....................$ {0:f2}", dc);
Console.WriteLine("Dollar amount of wheat purchased....................$ {0:f2}", dw);
Console.WriteLine("Dollar amount of soybean purchased..................$ {0:f2}", ds);
Console.WriteLine("What % of tax was levied............................{0}%", txp);
Console.WriteLine("What dollar amount of tax was levied................$ {0:f2}", tx);
Console.WriteLine("What the total amount of discount was given.........$ {0:f2}", dis);
Console.WriteLine("Total amount client owes............................$ {0:f2}", fo);
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");