#33208: Python: AC (29ms, 3.3MB)


imlindora@gmail.com (Augus)

學校 : 不指定學校
編號 : 204528
來源 : [114.35.233.9]
最後登入時間 :
2025-08-20 15:28:02

n,t=map(int,input().split())
x=0
while n<=t:
    x+=1
    n*=2
print(x)