A+B 输入输出练习I

while True:    
    try:
        s=raw_input()
        a,b=s.split(' ')
        a,b=int(a),int(b)
        print a+b
    except EOFError:
        break

A+B 输入输出练习I

原文地址:https://www.cnblogs.com/nbalive2001/p/4042191.html