Run ID:96835

提交时间:2024-11-09 16:44:31

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d; cin>>a>>b; c=a/b; if(a%b==0){ cout<<c<<endl; } d=a%b; else cout<<c<<" "<<d; return 0; }