Divisibility
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given positive integers a and b. Check if a is divisible by b.
Input
Two positive integers a and b (1 ≤ a, b ≤ 10^9
)
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".
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 32K
Acceptance rate 48%