题解 | #高精度整数加法#
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
while True:
try:
str1=input()
str2=input()
sum=int(str1)+int(str2)
print(str(sum))
except:
break
这题是来给我找自信的吗
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
while True:
try:
str1=input()
str2=input()
sum=int(str1)+int(str2)
print(str(sum))
except:
break
这题是来给我找自信的吗
相关推荐