DIM length, width, depth, sum as integer
Console.WriteLine("please enter length of the pool (in metres please)")
length = console.readline
Console.WriteLine("please enter depth of the pool (in metres please)")
Console.WriteLine("please enter width of the pool (in metres please)")
sum = length * width * depth
console.writeline("your pool is " & sum & " m³")
console.WriteLine("wow such an epic pool man")