public static void Main()
Console.WriteLine("Welcome to Mukarram's Pawn Shop");
Console.WriteLine("How many clock would you like to buy?");
byte item1 = byte.Parse(Console.ReadLine());
decimal cost1 = 15.99M * item1;
Console.WriteLine("How many earring would you like to buy?");
byte item2 = byte.Parse(Console.ReadLine());
decimal cost2 = 29.99M * item2;
Console.WriteLine("How many board games would you like to buy?");
byte item3 = byte.Parse(Console.ReadLine());
decimal cost3 = 9.99M * item3;
Console.WriteLine("How many watches would you like to buy?");
byte item4 = byte.Parse(Console.ReadLine());
decimal cost4 = 34.99M * item4;
decimal subtotal = cost1 + cost2 + cost3 + cost4;
Console.WriteLine("Please restart your form and order something");
else if (subtotal > 0 && subtotal <= 50)
Console.WriteLine("Your shiiping cost is $7.99");
else if (subtotal > 50 && subtotal <= 100)
Console.WriteLine("Your shipping cost is $9.99");
Console.WriteLine("You quality for free shipping.");
decimal tax = .08625M * subtotal;
decimal grandtotal = subtotal + tax + shipping;
Console.WriteLine("Your subtotal is: " + subtotal.ToString("C"));
Console.WriteLine("Your Grand Total is: " + grandtotal.ToString("C"));
Console.WriteLine("Would you like to restart you order? y/n ");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")