2020-ECNU-PRE-TEST-01

A+B Problem

Description

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如”请输入 a 和 b 的值: “。

Input

一行两个整数。

Output

一个整数表示答案。

Sample Input 1

1
1 1

Sample Output 1

1
2

Code

1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
}

----\(˙<>˙)/----赞赏一下吧~