Commit 8a53eb71 by BellCodeEditor

save project

parent 60252fd6
Showing with 6 additions and 2 deletions
def sun_number(n):
if n == 10
if n == 10:
return 1
num = (sun_number(n+1)+1)*2
return num
sun_number_num = sun_number(1)
print((sun_number_num))
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