Run ID:134120
提交时间:2025-10-25 17:39:51
#include<iostream> using namespace std; int main(){ int i=0,s=0; while(s<=1000){ i++; s+=i; } cout<<i<<endl; }