A1.A+B problem 题解
2024-04-19 20:28:20
发布于:浙江
2阅读
0回复
0点赞
思路解析
- 本题只需要了解顺序结构的基本内容即可。
代码示例
#include<bits/stdc++.h>
#define int long long
#define str string
using namespace std;
const int N = 1e6+5;
signed main(){
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}
这里空空如也
有帮助,赞一个