a+b问题

a+b问题

Description

输入两个整数,输出两个整数的和。

Input

输入两个整数用1个空格隔开。每个数均在1000以内。

Output

输出两个整数的和。

Sample Input 1 

2 5

Sample Output 1

7
      我的思路

  简单到一口没,没啦

   


      我的代码

   

  Lauguage

  C++

   Code

#include <iostream>
using namespace std;

int main()
{
long long a,b;
  cin>>a>>b;
  cout<<a+b;
	return  0;
 }


   



BYE~

posted @ 2018-05-15 21:16  SMALLff  阅读(186)  评论(0编辑  收藏  举报