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