Run ID:132948

提交时间:2025-10-12 17:47:27

# include<iostream> using namespace std; int main(){ int s=0,i=1; while(s<=1000){ i++; s+=i; } cout << i; return 0; }