You are given two integers n and k.
Return a boolean: True if n is a multiple of k (i.e. n divides evenly by k with no remainder), and False otherwise.
Handle the special case where k is 0: an integer is a multiple of 0 only when it is itself 0, so return True when both n and k are 0, and False when k is 0 but n is not.
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
10
5
Returns
True