Problem Description Calculate A + B. Input Each line will contain two integers A and B. Process to end of file. Output For each case, output A + B in one line. Sample Input 1 1 Sample Output 2 分析 输入两个数A和B,求A+B. 但是是多行的,因此需要用循环反复读取. 又因为输入数据中没有说有多少行,因此不…