------
## 最终结论
```python
def min_of_three(a, b, c):
    return min(a, b, c)
```