A + B Problem
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 750615 Accepted Submission(s): 230612
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
蓝桥杯比完了,应该会拿省一,毕竟河南省不是什么编程强省
接下来要准备河南省acm竞赛了 在杭电上练练我那高考英语三十分的英语
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF){
cout<<a+b<<endl;
}
return 0;
}