#C1671. Even Cubes Printer
Even Cubes Printer
Even Cubes Printer
You are given an integer m. Write a program to print the cube of each even integer i where \(0 \leq i < m\). Each result should be printed on a new line.
Specifically, for every even integer i in the range, compute \(i^3\) and output it.
Example:
Input: 5</p>Output: 0 8 64
inputFormat
The input is a single integer m (0 <= m <= 109). The input is provided via standard input (stdin).
outputFormat
Output the cube of every even integer in the range [0, m) where each cube is printed on its own line via standard output (stdout).
## sample5
0
8
64
</p>