0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 16:18:46 +00:00

P6. 文件 IO 测试

https://hydro.ac/d/system_test/record/61581e4f9f554addb798a8a0
This commit is contained in:
Baoshuo Ren 2021-10-02 16:55:20 +08:00 committed by Baoshuo Ren
parent ffbf7f7e52
commit 378abf1efc
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
Hydro/system_test/6/6.cpp Normal file
View File

@ -0,0 +1,12 @@
#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;
return 0;
}