Run ID:5346

提交时间:2024-11-09 20:45:22

#include<iostream> using namespace std; int main(){ int m,n=1; cin>>m; for(int i=1;i<=m;i++) n*=i; cout<<n; }