题解 | #高精度整数加法#
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
这些题目用python好像就失去了它原本想考核的知识点了。
while True:
try:
A = int(input())
B = int(input())
print(A+B)
except:
break
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
这些题目用python好像就失去了它原本想考核的知识点了。
while True:
try:
A = int(input())
B = int(input())
print(A+B)
except:
break
相关推荐