#include <iostream> using namespace std; int main() { int h, t, count = 0; cin >> h >> t; while (h >= t) { t += t; count++; } cout << count; }