PROGRAMMING:Division with remainder
###Task description
Given divisor and divisor, find integer quotient and remainder.
In this question, please use the default integer division and remainder operation, without any special treatment to the result. What's the difference between the result of the program and the mathematical definition?
###Input format:
A line containing two integers, divisor and divisor (non-zero divisor), separated by a space.
###Output format:
A line containing two integers, integer quotient and remainder, separated by a space.
###Input example:
```in
10 3
```
###Output example:
```out
3 1
```
###Tips
This topic is selected from openjudge website http://noi.openjudge.cn/ch0103/04/
answer:If there is no answer, please comment
Given divisor and divisor, find integer quotient and remainder.
In this question, please use the default integer division and remainder operation, without any special treatment to the result. What's the difference between the result of the program and the mathematical definition?
###Input format:
A line containing two integers, divisor and divisor (non-zero divisor), separated by a space.
###Output format:
A line containing two integers, integer quotient and remainder, separated by a space.
###Input example:
```in
10 3
```
###Output example:
```out
3 1
```
###Tips
This topic is selected from openjudge website http://noi.openjudge.cn/ch0103/04/
answer:If there is no answer, please comment