Commit 4d2c7cf8 by BellCodeEditor

auto save

parent 2000b60a
Showing with 17 additions and 0 deletions
a10 = 1
a9 = (a10 + 1)*2
a8 = (a9 + 1)*2
a7 = (a8 + 1)*2
a6 = (a7 + 1)*2
a5 = (a6 + 1)*2
a4 = (a5 + 1)*2
a3 = (a4 + 1)*2
a2 = (a3 + 1)*2
a1 = (a2 + 1)*2
print(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
\ No newline at end of file
a=1
for i in range(9):
a = (a+1)*2
print(a)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment