Write a program that reads two natural numbers and , with , and prints the integer division and the remainder of divided by .
Remember that, by definition, i must be the only integer numbers such that and .
Input consists of and , with .
Print a line with the integer division and the remainder of divided by , separated by a space.
Although the conditions for the input of this exercise prevent divisions by zero, check what happens to your program in that case.
Input
32 6
Output
5 2
Input
30 15
Output
2 0