#include <bits/stdc++.h> using namespace std; #define ll long long int main() { int h,t,c=0; cin>>h>>t; while(t<=h) { t+=t; c++; } cout<<c; return 0; }