mirror of
https://gitlab.com/niansa/pilang2.git
synced 2025-03-06 20:49:22 +01:00
9 lines
147 B
Python
9 lines
147 B
Python
# Run via time command to see execution time!
|
|
# number^2 until number > 50
|
|
|
|
number = 1
|
|
|
|
while number < 50:
|
|
number += number
|
|
|
|
print(number)
|