From afb997d950f2cba5aedf56dc44714b3e1f7d2f6c Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Tue, 31 Aug 2021 12:29:42 +0800 Subject: [PATCH] 1. A + B https://www.acwing.com/problem/content/submission/code_detail/7473278/ --- AcWing/1/1.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 AcWing/1/1.cpp diff --git a/AcWing/1/1.cpp b/AcWing/1/1.cpp new file mode 100644 index 00000000..00e955c5 --- /dev/null +++ b/AcWing/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; +}