Question: 
Write a python function to find remainder of two numbers.


Model's Code:
def find(a, b):
    return a % b



Sample Correct Code:
def find(n,m):
  r = n%m
  return (r)


Asserts:
assert find(3,3) == 0
assert find(10,3) == 1
assert find(16,5) == 1


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 502 of 974: 370/502 (73.70517928286853%): success