Is Multiple of K
Decide whether one number is a multiple of another using modulo.
Input format
A single line with two integers N and K (K is not zero).
Output format
Print true if N is a multiple of K, otherwise print false.
Constraints
- Values fit in a 64-bit signed integer
- Trailing whitespace and a trailing newline are ignored by the judge
Read from stdin, write to stdout. Sample cases below show the exact format.
Sample cases
Example 1
Input
10 5Expected output
trueExample 2
Input
10 3Expected output
false