Commit 3424f442 by BellCodeEditor

save project

parent 5354ed17
Showing with 16 additions and 15 deletions
def fei(mouth): def sum_numbers(num):
if fei(mouth)<=2: sum = 0
return 2 if num == 1:
else: return 1
i=1 sum = num + sum_numbers(num-1)
c=1 return sum
mouth-=2
for j in range(mouth):
b=i
i=i+c
c=b
i=int(input('shit'))
print(i)
print(sum_numbers(100))
\ No newline at end of file
def sum_numbers(num):
sum = 0
if num == 1:
return 1
sum
print(sum_numbers(100))
\ 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