From fc26b3d6366447d5a6b27ca4396fbc84932bca59 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Tue, 31 Aug 2021 12:33:01 +0800 Subject: [PATCH] #1. A+B Problem https://sjzezoj.com/submission/25012 --- S2OJ/1/1.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 S2OJ/1/1.cpp diff --git a/S2OJ/1/1.cpp b/S2OJ/1/1.cpp new file mode 100644 index 00000000..00e955c5 --- /dev/null +++ b/S2OJ/1/1.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + int a, b; + cin >> a >> b; + cout << a + b << endl; + return 0; +}