Time Limit: 2000 msMemory Limit: 65536 KB
Calculate a + b
The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.
OutputFor 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.
Sample Input1 5Sample Output
6Hint
Use + operator
C++源代码:
#includeusing namespace std; int main(){ long a,b; while(cin>>a>>b){ cout<
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)