提交时间:2020-07-26 09:16:34

运行 ID: 4949

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