From 6c0cc1966e9710b00b24146474a3a286427d3654 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Sat, 11 Sep 2021 21:48:30 +0800 Subject: [PATCH] =?UTF-8?q?1000.=20=E8=90=8C=E6=96=B0=E5=85=B3=E7=88=B1?= =?UTF-8?q?=E4=B9=8B-A+B=20Problem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://xjoi.net/detail/1118603 --- XJOI/problem/1000/1000.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 XJOI/problem/1000/1000.cpp diff --git a/XJOI/problem/1000/1000.cpp b/XJOI/problem/1000/1000.cpp new file mode 100644 index 00000000..00e955c5 --- /dev/null +++ b/XJOI/problem/1000/1000.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + int a, b; + cin >> a >> b; + cout << a + b << endl; + return 0; +}