def cuboid_volume(length, width, height): return length * width * height length, width, height = map(float, input("输入长宽高").split(" ")) area = cuboid_volume(length, width, height) print(f"{area:.4}")