Commit 5a38d8b6 by BellCodeEditor

save project

parent c631c5a9
Showing with 11 additions and 6 deletions
def new_input():
'''def new_input():
total = []
while True:
try:
......@@ -17,11 +17,16 @@ def jiage(a):
for i in a:
sum=sum+i
return sum
b=new_input()
count=jiage(b)
print(count)
'''
def add(x,y):
z=x+y
return z
a1=int(input())
a2=int(input())
c=add(a1,a2)
#b=new_input()
#count=jiage(b)
print(c)
......
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