eolymp
bolt
Try our new interface for solving problems
Problems

Divisibility

Divisibility

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

Input

Two positive integers a and b (1a, b109)

Output

If a is not divisible by b, print in one line the quotient and the remainder of dividing a by b. Otherwise print "Divisible".

Time limit 1 second
Memory limit 128 MiB
Input example #1
12 5
Output example #1
2 2
Input example #2
15 3
Output example #2
Divisible