public static void Main()
Console.WriteLine("Steve's Autobar Reciept Generator");
Console.WriteLine( new string('*', 50));
Console.WriteLine("Enter Customer Name: ");
string cName = Console.ReadLine();
Console.WriteLine ("Enter Hours Worked: ");
double hWorked = Convert.ToDouble(Console.ReadLine());
Console.WriteLine ("Enter Cost of Parts: ");
double pCost = Convert.ToDouble(Console.ReadLine());
Console.WriteLine(new string ('*', 50));
Console.WriteLine(new string (' ', 50));
Console.WriteLine("Steve's AutoBar Customer Receipt");
Console.WriteLine("Customer Name: " + cName.PadLeft(35));
Console.WriteLine(new string ('=', 50));
Console.WriteLine("Labor Cost: " + (lCost * hWorked).ToString("C").PadLeft(38));
Console.WriteLine("Parts and Supplies: " + pCost.ToString("C").PadLeft(30));
double sTotal = (lCost * hWorked) + pCost;
Console.WriteLine("Subtotal: " + sTotal.ToString("C").PadLeft(40));
Console.WriteLine("Taxes: " + (sTotal * hst).ToString("C").PadLeft(43));
Console.WriteLine(new string('=', 50));
Console.WriteLine("Total: " + ((sTotal) + (sTotal * hst)).ToString("C").PadLeft(43));