Python在线笔试琐碎
求两个整数 A+B 的和。
while True: try: (n, m) = (int(x) for x in raw_input().split()) print(n+m) except KeyError: break