From ffbf7f7e525a2ddc6d859510dadc7bc6957efa54 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Sat, 2 Oct 2021 16:52:41 +0800 Subject: [PATCH] =?UTF-8?q?P5.=20=E4=BA=A4=E4=BA=92=E9=A2=98=E6=B5=8B?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://hydro.ac/d/system_test/record/61581c1e9f554addb798a819 --- Hydro/system_test/5/5.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Hydro/system_test/5/5.cpp diff --git a/Hydro/system_test/5/5.cpp b/Hydro/system_test/5/5.cpp new file mode 100644 index 00000000..00e955c5 --- /dev/null +++ b/Hydro/system_test/5/5.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + int a, b; + cin >> a >> b; + cout << a + b << endl; + return 0; +}