Run ID:110830

提交时间:2025-02-23 14:19:15

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