Files
python/TangDou/LuoGuBook/P2181.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

12 lines
215 B
C++

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
LL n, ans;
int main() {
cin >> n;
ans = n * (n - 1) / 2 * (n - 2) / 3 * (n - 3) / 4;
printf("%lld\n", ans);
return 0;
}