#include int main(){ int a, b, c; scanf("%i %i",&a,&b); int count=1; c = a; while(a < b){ a += c; count++; } printf("%i\n",count); }