#6. 求n的阶乘

求n的阶乘

说明

输入一个整数n(n<=20),计算 s =  n!,  n!表示n的阶乘。n!=1*2*3*4*…*n  ,其中n由键盘输入。输出s的值。

输入

一行一个整数n

输出

一行一个整数n的阶乘。

样例