设输入为n,操作次数是c,n=1时c=0,n=2时c=1…… 写出通项公式后,易得代码

from math import log2,ceil
t = int(input())
for _ in range(t):
    print(ceil(log2(int(input()))))