public static void Main()
Console.WriteLine("how much does henrys coat cost");
decimal hcoat = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys coat cost");
decimal pcoat = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys hat cost");
decimal hhat = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys hat cost");
decimal phat = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys gloves cost");
decimal hglove = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys gloves cost");
decimal pglove = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys shoes cost");
decimal hshoe = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys shoes cost");
decimal pshoe = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys socks cost");
decimal hsock = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys socks cost");
decimal psock = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys hot wheels cost");
decimal hhotw = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys cinderella cost");
decimal pcind = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys duplos cost");
decimal hduplo = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys duplos cost");
decimal pduplo = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does henrys toy cost");
decimal htoy = decimal.Parse(Console.ReadLine());
Console.WriteLine("how much does pollys toy cost");
decimal ptoy = decimal.Parse(Console.ReadLine());
decimal hsubtotal = hcoat+hhat+hglove+hshoe+hsock+hhotw+hduplo+htoy;
Console.WriteLine("the sum of henrys presents" +hcoat+","+hhat+","+","+hglove+","+","+hshoe+","+","+hsock+","+","+hhotw+","+","+hduplo+","+","+htoy+" is " +hsubtotal.ToString("C"));
decimal psubtotal = pcoat+phat+pglove+pshoe+psock+pcind+pduplo+ptoy;
decimal htax = hsubtotal *.08675M;
decimal ptax = psubtotal * .08675M;
Console.WriteLine("the sum of pollys presents" +pcoat+","+","+phat+","+","+pglove+","+","+pshoe+","+","+psock+","+","+pcind+","+","+pduplo+","+","+ptoy+" is " +psubtotal.ToString("C"));
Console.Write("henrys tax is $"); Console.WriteLine(htax);
Console.Write("pollys tax is $"); Console.WriteLine(ptax);
decimal under = 250M - psubtotal+hsubtotal;
decimal exceed = psubtotal+hsubtotal-250M;
if (psubtotal+hsubtotal<250M)
{Console.WriteLine("good job you were under $250"+under.ToString("C"));
else if (psubtotal+hsubtotal>250)
{Console.WriteLine("you went over budget by" +exceed.ToString("C"));
{Console.WriteLine("you spent exactly 250");