Run ID:8154

提交时间:2025-06-14 20:00:55

#include<bits/stdc++.h> using namespace std; int main(){ int x,y,z; cin>>x>>y; if(x%y==0){ cout<<x/y<<endl; return 0; } cout<<x/y<<" "; z=x%y; cout<<z<<endl; return 0; }