提交时间:2020-07-29 10:30:36
运行 ID: 5298
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; cout<<n%m<<" "<<n/m; return 0; }