Factorial (for loop)

Problem Statement

Compute N! (factorial of N) — the product of all natural numbers from 1 to N.

N! = 1 × 2 × 3 × … × N

Input

A single natural number N (1 ≤ N ≤ 12).

Output

Print the value of N!.

Example

input output
3 6