UVA-1 #1. A + B Problem

给你两个数 aa 和 bb,请输出他们的和。

输入格式

一行,两个用空格隔开的整数 aa 和 bb。

输出格式

一个整数,表示 a+ba+b。

样例一

input

2 3

output

5

限制与约定

0≤a,b≤1090≤a,b≤109

时间限制:1s1s

空间限制:256MB256MB

下载

样例数据下载

#include<iostream>
using namespace std;
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d
",a+b);
}
原文地址:https://www.cnblogs.com/lunatic-talent/p/12798725.html