public static void Main()
Console.WriteLine("Welcome to Montana Co.");
Console.WriteLine("How many blazers would you like to purchase?");
byte item1 = byte.Parse(Console.ReadLine());
decimal cost1 = 19.99M * item1;
Console.WriteLine("How many business suits would you like to purchase?");
byte item2 = byte.Parse(Console.ReadLine());
decimal cost2 = 39.99M * item2;
Console.WriteLine("How many casual suits would you like to purchase?");
byte item3 = byte.Parse(Console.ReadLine());
decimal cost3 = 49.99M * item3;
Console.WriteLine("How many pea coats would you like to purchase?");
byte item4 = byte.Parse(Console.ReadLine());
decimal cost4 = 29.99M * item4;
decimal subtotal = cost1 + cost2 + cost3 + cost4;
Console.WriteLine("Please restart your order.");
else if (subtotal > 0 && subtotal <= 50)
Console.WriteLine("Your shipping cost is 7.99.");
else if (subtotal > 50 && subtotal <= 100)
Console.WriteLine("Your shipping cost is 9.99.");
Console.WriteLine("You qualify for free shipping.");
decimal tax = 0.8625M * subtotal;
decimal grandtotal = subtotal + tax + shipping;
Console.WriteLine("Your subtotal is " + subtotal.ToString("C"));
Console.WriteLine("Your grandtotal is " + grandtotal.ToString("C"));