def getDim(dim):
      dim=input("Enter the " + d +": ")
      return (dim)

def calcVolume (l,w,h)
      vol= l*h*l
      return()

def report(vol)
print "the volume is " + str(vol)

def main():

l= getDim ("length")
l= getDim ("width")
l= getDim ("height")


      
