Box Volume

Volume tells us how much space a box, room, or container takes up. Write a function get_volume_of_cuboid that takes length, width, and height. Return the volume of the cuboid by multiplying the length by the width and the height.

Примеры

Ввод
2, 5, 2
Вывод
20
Ввод
4, 4, 4
Вывод
64
Ввод
1, 1, 1
Вывод
1

Нужно реализовать

def get_volume_of_cuboid(length: int, width: int, height: int) -> int:

Теги

math
PostgreSQLv16

Le résultat de l'exécution du code s'affichera ici

Visible tests
1
Input
2, 5, 2
Expected20
2
Input
4, 4, 4
Expected64
3
Input
1, 1, 1
Expected1
4
Input
10, 2, 1
Expected20
5
Input
3, 3, 3
Expected27
6
Input
7, 100, -2
Expected-1400
Focus radio
Paused · SomaFM · Fluid