1018. A+B Problem Revisited
题目描述
对输入文件的每一行中的两个整数,输出它们的和。
输入格式
多行输入,每行两个整数:a和b
输出格式
多行输出,每行输出对应于相应输入中两个数的和:a+b。
说明
整数范围不会超过int类型。
Sample Input
1 2
3 4
Sample Output
3 7
#include<iostream> using namespace std; int main(){ int a,b; while(cin>>a>>b){ cout<<a+b<<endl; } return 0; }