提交时间:2024-01-18 17:13:35
运行 ID: 37033
#include<iostream> using namespace std; int main(){ int q,w,e,r; cin>>q>>w; e=q/w; r=q%w; cout<<e<<" "<<r; }