Const litres as integer = 1000
Console.WriteLine("Enter the width of aquarium")
width= Console.ReadLine()
Console.WriteLine ("Enter the depth of aquarium")
depth = Console.ReadLine()
Console.WriteLine("Enter the length of the aquarium")
length= Console.ReadLine()
volume = (width*depth*length)/litres
Console.WriteLine("Volume of the aquarium = " & volume & " " & "litres")