Commit 727e6d46 by BellCodeEditor

auto save

parent 0f53c1f3
Showing with 13 additions and 0 deletions
num=int(input('啥~'))
sum = 0
def digui(num):
if num<1:
return 1
else:
sum += digui(num-1)
return sum
abs = digui(num)
print(abs)
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