#45734: 雖然我沒有好好設變數(目移


qiqiloveke@gmail.com (第一執政(不是蛋糕)


a = 1
b,c = map(int,input().split())
i = 0
while True:
  if b > c:
    break
  else:
    b *= 2
    i += 1
print(i)