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