#K90417. Maximum Number of Unit Cubes
Maximum Number of Unit Cubes
Maximum Number of Unit Cubes
This problem requires you to calculate the maximum number of 1x1x1 unit cubes that can be placed in a rectangular grid of size L x W x H. The mathematical formula to compute the number of cubes is given by \(L \times W \times H\). Ensure your program reads from standard input and outputs the result to standard output.
inputFormat
The input consists of a single line containing three integers L, W, and H separated by spaces, which represent the dimensions of the grid.
outputFormat
Output a single integer which is the maximum number of 1x1x1 unit cubes that can be placed inside the grid.
## sample5 3 2
30