#include<bits/stdc++.h> using namespace std; int main() { int m,n; cin>>m>>n; cout<<(m-m%n)/n<<" "<<m%n; return 0; }