Bingxing.Dong

Results 1 issues of Bingxing.Dong

在A+B问题III中的Python代码中: ************************************************************************************************************************************* import sys while True: s = input().split() # 一行一行读取 a, b = int(s[0]), int(s[1]) if not a or not b: # 遇到 0, 0 则中断 break print(a +...