public static void Main()
Console.WriteLine("What is the length of the floor? (feet)");
decimal length = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("What is the width of the floor? (feet)");
decimal width = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("What is the depth of the floor? (feet)");
decimal depth = Convert.ToDecimal(Console.ReadLine());
bool isGreaterThan0 = (length > 0) && (width > 0) && (depth > 0);
decimal floorVolume = (length * width * depth);
decimal buggyTrips = Math.Ceiling(floorVolume/150);
decimal estimatedTime = ((buggyTrips*5)+40+20);
Console.WriteLine("Concrete Needed (cubic feet): " +floorVolume);
Console.WriteLine("Number of Buggy Trips: " +buggyTrips);
Console.WriteLine("Total time Required (minutes): " +estimatedTime);
Console.WriteLine("Error: numbers must be greater than 0");