public static void Main()
Console.WriteLine("What is the subtotal?");
sales = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("What day of the week is it?");
dayOfTheWeek = Console.ReadLine();
Console.WriteLine("This is not a real day");
Console.WriteLine("Your sales total for {0} is ${1:N2}", dayOfTheWeek, sales);