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