#include using namespace std; int main(){ int a,b; cin >> a >> b; int cnt=0; while(a>b){ a*=2; ++cnt; } cout << cnt << endl; }