From 9b6c6b4a18810a9a91c7dae3dfdc3b94c33e20ac Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Fri, 25 Mar 2022 08:55:26 +0800 Subject: [PATCH] 1000. A+B Problem https://hydro.ac/d/bzoj/record/623d12e7d48588880961b609 --- BZOJ/1000/1000.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 BZOJ/1000/1000.cpp diff --git a/BZOJ/1000/1000.cpp b/BZOJ/1000/1000.cpp new file mode 100644 index 00000000..68147462 --- /dev/null +++ b/BZOJ/1000/1000.cpp @@ -0,0 +1,14 @@ +#include + +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; +}