#include<iostream>
using namespace std;
int main(){
int a,z,w=1;
while(cin>>a>>z){
for(int i=a;i<=z;i++){
z=z-i;
w++;
}cout<<w<<endl;
}
return 0;