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

posted @ 2014-10-22 08:35  Mose  阅读(467)  评论(0编辑  收藏  举报