题解:P1001 A+B Problem

· · 题解

非常简单,代码如下

#include<bits/stdc++.h>//万能脑袋(头)
#define int long long//red(宏)定义
using namespace std;
signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}