From 07f2d4da0aac147bf51487f8340cca560f230c41 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Mon, 6 Jun 2022 16:37:49 +0800 Subject: [PATCH] #1. A + B Problem https://uoj.ac/submission/557214 --- UniversalOJ/1/1.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 UniversalOJ/1/1.cpp diff --git a/UniversalOJ/1/1.cpp b/UniversalOJ/1/1.cpp new file mode 100644 index 00000000..09fa9e82 --- /dev/null +++ b/UniversalOJ/1/1.cpp @@ -0,0 +1,17 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int a, b; + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + cin >> a >> b; + cout << a + b << endl; + + return 0; +}