首页 > 代码库 > A+B 输入输出练习I

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