Commit 62f986e3 by BellCodeEditor

save project

parent c74249c5
Showing with 10 additions and 3 deletions
......@@ -13,6 +13,13 @@ def new_input():
total.append(unit)
print("_"*30)
print(total)
return total
new_input()
\ No newline at end of file
def sum(many):
s=0
for i in many:
s=s+i
return s
a=new_input()
b=sum(a)
print(b)
\ 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