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