#include int main(void){ int a,b; int count=1; scanf("%d%d",&a,&b); while(1){ if(a>=b){ printf("%d",count); break; } a+=a; count++; } return 0; }