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