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


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

學校 : 國立臺灣大學
編號 : 240708
來源 : [111.241.105.11]
最後登入時間 :
2025-09-12 20:21:22

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