#K2226. Cube Series
Cube Series
Cube Series
Given a positive integer \(N\), compute the \(N\)th term of the series where each term is the cube of its position. The series is defined as follows:
\(1, 8, 27, 64, \ldots\)
This means the \(N\)th term is \(N^3\). For example, when \(N = 3\), the output is \(27\) because \(3^3 = 27\).
You are required to read the input from standard input (stdin) and print the result to standard output (stdout).
inputFormat
The input consists of a single integer \(N\) provided via standard input. You may assume that \(1 \leq N \leq 10^6\).
outputFormat
Output the cube of \(N\), i.e., \(N^3\), as a single integer to standard output.
## sample1
1