A+B 7
Posted heroin1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B 7相关的知识,希望对你有一定的参考价值。
你的任务是计算a+b。Input
输入由一系列成对的由空格分割的整数a和b构成,一对输入占用一行。
Output
对于每组输入,要求在一行输出它们的和。并且你要保证每组输出之间有一空行。
Sample Input
1 5 10 20
Sample Output
6 30
#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
cout<<a+b<<endl<<endl;
}
}
注意一下需要两个换行符就行了了
以上是关于A+B 7的主要内容,如果未能解决你的问题,请参考以下文章
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段