#include<iostream> using namespace std; int main(){ int q,w,e,r; cin>>q>>w; e=q/w; r=q%w; cout<<e<<" "<<r; }