import math def iterated_logarithm(n:float) -> int: while n <= 1 : return 0 else: return int(math.log(n ,2)) print(iterated_logarith