------
## 最终结论
```python
def find(a, b):
    return a % b

# Test cases
assert find(3, 3) == 0
assert find(10, 3) == 1
assert find(16, 5) == 1
```