#28641: python 簡單解法


godbottle98@gmail.com (z3 0)

學校 : 國立屏東高級中學
編號 : 123589
來源 : [140.127.41.248]
最後登入時間 :
2023-11-27 09:24:09
f044. 2. 史萊姆生態區 (Slime) -- 2020年4月TOI練習賽新手組 | From: [122.121.53.130] | 發表日期 : 2021-12-22 22:11

a,b = map(int,input().split())
b = b//a
i = 0
c = 0
while b > 0:
    b = b - 2**i
    i += 1
    c += 1
print(c)
 
ZeroJudge Forum