#include<bits/stdc++.h> using namespace std; int main(){ int i= 0,sum=0; while(sum<=1000){ i++; sum+=i; } cout<<i; return 0; }