摘要: import sys try: while True: line = sys.stdin.readline().strip() if line == '': break lines = line.split() print int(lines[0]) + int(lines[1]) except:... 阅读全文
posted @ 2017-08-02 10:52 爱简单的Paul 阅读(9194) 评论(0) 推荐(0) 编辑