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:
parent
ffbf7f7e52
commit
378abf1efc
12
Hydro/system_test/6/6.cpp
Normal file
12
Hydro/system_test/6/6.cpp
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user