#P2. A+B Problem
A+B Problem
Description
给你两个整数,求两个整数之和。
Input Format
一行,两个整数。
Output Format
一行,的值
Sample
样例输入
5 7
样例输出
12
Hint
在SYZOJ,你可以用以下代码通过此题:
#include <cstdio>
using namespace std;
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a+b);
return 0;
}