#include <iostream> using namespace std; long long factorial(int n) { if (n == 0) return 1; return n * factorial(n - 1); } int main() { int n; while (cin >> n) { // 注意 while 处理多个 case cout << factorial(n) << endl; } } // 64 位输出请用 printf("%lld")