Question: 
Write a function to find the volume of a cuboid.


Model's Code:
def volume_cuboid(length, width, height):
    return length * width * height



Sample Correct Code:
def volume_cuboid(l,w,h):
  volume=l*w*h
  return volume


Asserts:
assert volume_cuboid(1,2,3)==6
assert volume_cuboid(5,7,9)==315
assert volume_cuboid(10,15,21)==3150


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 373 of 974: 271/373 (72.65415549597856%): success