From 48c7c9b1640d29a03cd58110834c1a162875eb7f Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Sun, 4 Jul 2021 07:27:48 +0800 Subject: [PATCH] =?UTF-8?q?B2001=20=E5=85=A5=E9=97=A8=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E9=A2=98=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R52360502 --- Luogu/problem/B2001/B2001.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Luogu/problem/B2001/B2001.cpp diff --git a/Luogu/problem/B2001/B2001.cpp b/Luogu/problem/B2001/B2001.cpp new file mode 100644 index 00000000..8a2c87e5 --- /dev/null +++ b/Luogu/problem/B2001/B2001.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + long long a, b; + cin >> a >> b; + cout << a + b << endl; + return 0; +}