提交时间:2020-07-27 20:01:59

运行 ID: 5145

#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; cout<<n%m<<" "<<n/m; return 0; }