본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 8719번 Piłeczka

by 현장 2024. 12. 30.

-Code

from sys import stdin

for _ in range(int(stdin.readline())):
    x, w = map(int, stdin.readline().split())
    res = 0

    while x < w:
        x *= 2
        res += 1

    print(res)