Run ID:122114

提交时间:2025-06-14 11:37:30

#include<bits/stdc++.h> using namespace std; int main(){ int s=0,n=1; while(s<=1000){ s+=n; n++; } cout<<n-1; return 0; }