From d474714691d6d802bd16ad79a91f637dbacc14cf Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Fri, 1 Apr 2022 14:34:10 +0800 Subject: [PATCH] =?UTF-8?q?1000.=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 http://ybt.ssoier.cn:8088/statusx.php?runidx=15554592 --- ybt/1000/1000.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ybt/1000/1000.cpp diff --git a/ybt/1000/1000.cpp b/ybt/1000/1000.cpp new file mode 100644 index 00000000..68147462 --- /dev/null +++ b/ybt/1000/1000.cpp @@ -0,0 +1,14 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int a, b; + +int main() { + std::ios::sync_with_stdio(false); + cin >> a >> b; + cout << a + b << endl; + return 0; +}