0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:05:25 +00:00

P5. 交互题测试

https://hydro.ac/d/system_test/record/61581c1e9f554addb798a819
This commit is contained in:
Baoshuo Ren 2021-10-02 16:52:41 +08:00 committed by Baoshuo Ren
parent 9cab7bb100
commit ffbf7f7e52
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
Hydro/system_test/5/5.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}