mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 04:18:48 +00:00
B2010 带余除法
R52604210
This commit is contained in:
parent
d538c532a8
commit
25ce10f451
10
Luogu/problem/B2010/B2010.cpp
Normal file
10
Luogu/problem/B2010/B2010.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int a, b;
|
||||||
|
cin >> a >> b;
|
||||||
|
cout << a / b << ' ' << a % b << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user