Commit 3e859886 by BellCodeEditor

auto save

parent 4be94a0d
Showing with 7 additions and 1 deletions
......@@ -14,6 +14,12 @@ def new_input():
print("_"*30)
return total
def sum(money):
s=0
for i in money:
s=s+i
return s
a=new_input()
print(a)
b=sum(a)
print(b)
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