def calculate_cuboid_volume(length, width, height): return length * width * height # Example usage: volume = calculate_cuboid_volume(586, 7953, 35695) print(f"The volume of the cuboid is: {volume}")