Untitled

 avatar
unknown
python
10 months ago
151 B
1
Indexable
if __name__ == '__main__':
    n = int(input('Podaj liczbę: '))
    potega = 1

    while potega <= n:
        print(potega)
        potega *= 2
Editor is loading...
Leave a Comment