背景 Background
本题属于TYVJ-BEGIN系列的第一道,本系列共有三十一道题目,难度递增,适合新学习语言的朋友。
描述 Description
输入a和b,输出a+b
输入格式 Input Format
两个数a,b
输出格式 Output Format
一个数a+B
样例输入 Sample Input
4 5
样例输出 Sample Output
9
时间限制 Time Limitation
1s
注释 Hint
a,b均在longint范围内
/*
ID: beta.
PROB: <Tyvj>Begin-Unit0-a+b
LANG: C++
*/
#include <iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a+b;
return(0);
}