0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:31:59 +00:00

H1000. A + B Problem

https://hydro.ac/record/6122393c40e8cc0e86385169
This commit is contained in:
Baoshuo Ren 2021-10-01 18:17:42 +08:00 committed by Baoshuo Ren
parent d7e56856e0
commit 57c70f1b93
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
Hydro/H1000/H1000.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;
}