Python - 1322 - A+B while(1)版

2021/9/20 11:05:14

本文主要是介绍Python - 1322 - A+B while(1)版,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Your task is to Calculate a + b.

Too easy?! Of course! I specially designed the problem for acm beginners.

You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim

Input

The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.

Output

For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.

代码:

import sys
result = []
try:
    while True:
        a,b = input().split()
        result.append(int(a)+int(b))
except:
    pass
for i in result:
    print(i)


这篇关于Python - 1322 - A+B while(1)版的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程