Volume of a Cuboid.py 81 B

12
  1. def getVolumeOfCuboid(length, width, height):
  2. return length * width * height