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
1.我的第一道ACM题,非常非常非常简单的一道题
2.但是我还是卡了
3.原因是没有循环输入输出
4.总结:英语非常重要,稍微一点点偏差,会自闭一天
代码:
#include <iostream> using namespace std; int main ( ) { int x,y; while (cin>>x>>y) cout<<x+y<<endl; ; }