eolymp
Problems

Divisibility

Divisibility

Time limit 1 second
Memory limit 128 MiB

Given positive integers a and b. Check if a is divisible by b.

Input data

Two positive integers a and b (1a, b10^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