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