5 lines
46 B
Python
5 lines
46 B
Python
|
|
n = 1024
|
||
|
|
while n > 0:
|
||
|
|
print n
|
||
|
|
n //= 2
|