题解
2024-08-31 15:07:14
发布于:浙江
2阅读
0回复
0点赞
题解
#include <bits/stdc++.h>
using namespace std;
int main(){
freopen("A+B.in","r",stdin);
freopen("A+B.out","w",stdout);
int a,b;
cin >> a >> b;
cout << a+b << endl;
fclose(stdin);
fclose(stdout);
}
这里空空如也
有帮助,赞一个