Commit d7c4495e by BellCodeEditor

save project

parent d7de2b3f
Showing with 8 additions and 5 deletions
for i in range(1,10): def sum_numers(num):
for j in range(1,i+1): if num==1:
print(j,"*",i,"=",(j*i),end=" ") return 1
print() sum=sum_numers(num-1)+num
\ No newline at end of file return sum
number=sum_numers(100)
print(number)
\ 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