Run ID:128840
提交时间:2025-08-20 12:07:47
#include<bits/stdc++.h> using namespace std; int main() { int c,z; cin>>c>>z; if(c%z!=0){ cout<<c/z<<" "<<c%z; } else if(c%z==0){ cout<<c/z; } return 0; }