Apple Sharing

Statement

n students take k apples and distribute them among each other evenly. The remaining (the indivisible) part remains in the basket. How many apples will each student get? How many apples will remain in the basket?

The program reads the numbers n (no of students) and k (no of apples). It should print the two answers to the questions above.

Example input

5
13

Example output

2
3



Login is required



TEST CASES