Run ID:92889

提交时间:2024-10-06 17:46:59

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