------
## 最终结论
```python
def volume_cuboid(length, width, height):
    return length * width * height
```