#K69387. Product of Squares

    ID: 33075 Type: Default 1000ms 256MiB

Product of Squares

Product of Squares

Given a positive integer N, compute the product of the squares of the first N natural numbers. In mathematical notation, you are required to compute:

$$\prod_{i=1}^{N} i^2$$

For example, when N = 3, the answer is 12 * 22 * 32 = 36.

inputFormat

The input consists of a single line containing a positive integer N (1 ≤ N ≤ 105).

outputFormat

Output a single integer, the product of the squares of the first N natural numbers.

## sample
1
1