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

1000. A+B Problem

https://hydro.ac/d/bzoj/record/623d12e7d48588880961b609
This commit is contained in:
Baoshuo Ren 2022-03-25 08:55:26 +08:00
parent 138677acc7
commit 9b6c6b4a18
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
BZOJ/1000/1000.cpp Normal file
View File

@ -0,0 +1,14 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int a, b;
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b;
cout << a + b << endl;
return 0;
}