0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:25:24 +00:00
OI-codes/problem/P5739/P5739.cpp
2020-09-22 19:08:14 +08:00

15 lines
229 B
C++

// R38740581
#include<bits/stdc++.h>
using namespace std;
int ans[13] = {0, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600};
int main() {
int n;
cin >> n;
cout << ans[n];
return 0;
}