Commit 84fbe2a8 by BellCodeEditor

save project

parent f1ea314c
Showing with 9 additions and 0 deletions
n = 1
for i in range(10-1, 0, -1):
n = (n+1) * 2
print(n)
n, m = 1, 1
for m in range(10-1):
n = (n + 1) * 2
print(n)
\ 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