课时2作业2

Description

你的任务是计算a+b

Input

输入包含a和b,通过空格隔开

Output

需要输出a、b的和

Sample Input 1

1 4

Sample Output 1

5

#include 
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
const int N = 1e5 + 10;
int a[N];

void solve() {
    int a, b;
    cin >> a >> b;
    cout << a + b ;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int _ = 1;
//    cin >> _;
    while (_ -- ) {
        solve();
    }
    return 0;
}

你可能感兴趣的:(考研,#,c语言督学训练营,c++,算法,数据结构)