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

# Test cases
assert find(10, 3) == 3
assert find(4, 2) == 2
assert find(20, 5) == 4
```