Python 个人认为是两种版本,都可以通过,第一种是对每行分别进行处理并输出,第二种是一次性全读取,并一次性全输出。 第一种: while True: try: a, b = map(int, raw_input().strip().split()) print(a + b) except EOFError: break 第二种: a = [] while True: try: a.append(list(map(int,input().strip().split()))) except...