A+B
Time Limit:1000ms Memory Limit:32768KB 64bit IO Format: %lld
Description
给出两个不大于20000的非负整数,求他们的和!。
Input
输入文件中有两个数,由一个空格隔开,代表题目描述中的两个数。
Output
输出文件含有一个整数,为两个数之和。
Sample Input
12 23
Sample Output
35
code
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}