ConvertQCM/C1/vs/q29_33.py
2025-08-26 18:38:28 +02:00

6 lines
No EOL
72 B
Python

def f(n):
c = 0
while n > 0:
c = c + 1
n = n // 2
return c