题解 | #高精度整数加法#
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
while True: try: a = int(input()) b = int(input()) print(a + b) except: break
高精度整数加法
http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6
while True: try: a = int(input()) b = int(input()) print(a + b) except: break
相关推荐