public static void Main()
Console.WriteLine("Welcome to The Bedroom Company. How many desks ($50) would you like to buy?");
byte desk2 = byte.Parse(Console.ReadLine());
Console.WriteLine("How many trash bins ($20) would you like to buy?");
byte bin2 = byte.Parse(Console.ReadLine());
Console.WriteLine("How many pencil packs ($4) would you like to buy?");
byte pencil2 = byte.Parse(Console.ReadLine());
Console.WriteLine("How many desk mats ($15) would you like to buy?");
byte mat2 = byte.Parse(Console.ReadLine());
int sub = desk+bin+pencil+mat;
Console.WriteLine("Your shipping cost is " +ship);
double tax = (ship+sub)*8.625;
double grand = ship+sub+tax;
Console.WriteLine("Your sub total is " +sub);
Console.WriteLine("Your grand total is " +grand);}
else if (sub > 50 && sub <=100)
else if (sub > 0 && sub <=50)
{Console.WriteLine("You need to spend more money");
Console.WriteLine("Your shipping cost is " +ship);
double tax = (ship+sub)*8.625;
double grand = ship+sub+tax;
Console.WriteLine("Your sub total is " +sub);
Console.WriteLine("Your grand total is " +grand);
Console.WriteLine("Your shipping cost is " +ship);
double tax = (ship+sub)*8.625;
double grand = ship+sub+tax;
Console.WriteLine("Your sub total is " +sub);
Console.WriteLine("Your shipping cost is " +sub);
Console.WriteLine("Your grand total is " +grand);