#include <stdio.h> int main() { int a = 0; int b = 0; scanf("%d %d",&a,&b); int c = a / b ; int d = a - c * b; printf("%d %d",c,d); return 0; }