Competitions
Week 1 Introduction Part 2
Quotient and remainder
Two positive integers a and b are given. Print the quotient and the remainder of dividing a by b.
Input data
Two positive integers a and b (a, b ≤ 10^9
).
Output data
Print the quotient and the remainder of dividing a by b.
Examples
Input example #1
27 10
Output example #1
2 7