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