首页 > 代码库 > P1000 A+B Problem

P1000 A+B Problem

P1000A+B Problem
 
背景

for beginners,特设此题,^_^

描述

输入两个自然数,输出他们的和

格式

输入格式

两个自然数x和y 0<=x,y<=327670<=x,y<=32767

输出格式

一个数,即x和y的和

样例1

样例输入1[复制]

 
123 500

样例输出1[复制]

 
623

限制

各个测试点1s

 

 

 

入门题,不多说,题解:

//C++

#include<iostream>

using namespace std;

int main()

{

    long long a,b;

    cin>>a>>b;

    a+=b;

    cout<<a<<endl;

}

/*

excited!*/

P1000 A+B Problem