1982 带余除法
#include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; int main() { int a,b; cin >> a >> b; // a/b:得到商 a%b:得到余数 cout << a / b << " " << a % b; return 0; }