Competitions
DSA Week 1
Factorial
Find the factorial of a number.
Input data
One integer n~(0 \le n \le 20).
Output data
Print the value of n! = 1 \cdot 2 \cdot 3 \cdot ... \cdot n.
Examples
Input example #1
3
Output example #1
6