Run ID:119803

提交时间:2025-05-19 19:01:15

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n=1,m,an=1;; cin>>m; while(an<=m){ n++; an=an*n; } cout<<n; return 0; }