提交时间:2024-05-21 22:16:44

运行 ID: 47807

#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; cout<<n*(n-1)*(n-2); return 0; }