From 25ce10f45139664fd21d1d5e39400c5667919672 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Thu, 8 Jul 2021 11:40:08 +0800 Subject: [PATCH] =?UTF-8?q?B2010=20=E5=B8=A6=E4=BD=99=E9=99=A4=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R52604210 --- Luogu/problem/B2010/B2010.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Luogu/problem/B2010/B2010.cpp diff --git a/Luogu/problem/B2010/B2010.cpp b/Luogu/problem/B2010/B2010.cpp new file mode 100644 index 00000000..3027dac0 --- /dev/null +++ b/Luogu/problem/B2010/B2010.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + int a, b; + cin >> a >> b; + cout << a / b << ' ' << a % b << endl; + return 0; +}