Commit e73c98f4 by BellCodeEditor

save project

parent b12cc6ff
Showing with 10 additions and 0 deletions
def paceh(num):
if num==1:
return 1
a=num+paceh(num-1)
return a
print(paceh(10))
def funr(n):
if n<=2:
return 1
\ 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