Run ID:139999
提交时间:2025-12-13 14:09:54
#include<bits/stdc++.h> using namespace std; int main(){ int s=0,i=1; while(s<=1000){ s += i; i++; } i--; cout<<i; return 0; }