#1014. 阶乘

阶乘

Description

输入n,请用递归的方式求n的阶乘。


Input Format

每组测试数据输入一个n (1<=n<=8)。

Output Format

每组测试数据,输出n的阶乘。
3
6

Source

递推递归