提交时间:2024-03-06 13:00:18

运行 ID: 135668

#include<iostream> using namespace std; int main() { int m,n; cin>>m>>n; cout<<int(m/n)<<" "<<m%n; }