ACM1

来源:互联网 发布:清华大学软件学院 编辑:程序博客网 时间:2024/05/17 02:11

Calculate a + b

Input

The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.

Output

For 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 Input

1 5

Sample Output

6

Hint

Use + operator


#include<iostream>

int main( )

{

 int a,b;

 while(std::cin>>a >> b)

std::cout<<a+b<<std::endl;

  return 0;

}

0ms  188kb 小菜



原创粉丝点击