Competitions
Week 2 Conditionals Part 1
Divisibility
Given positive integers a and b. Check if a is divisible by b.
Input data
Two positive integers a and b (1 ≤ a, b ≤ 10^9
)
Output data
If a is not divisible by b, print in one line the quotient and the remainder of dividing a by b. Otherwise print "Divisible".
Examples
Input example #1
12 5
Output example #1
2 2
Input example #2
15 3
Output example #2
Divisible