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