Drop links or images here to add them to the editor.

Factorial ⭐⭐⭐

Read an integer N and compute N! = 1 * 2 * 3 * ... * N.

Input

One integer:

  1. N

Output

Print a single number: the value of N!.

Example

Input:

5

Output:

120