------
## 最终结论
```python
def smallest_num(lst):
    return min(lst)

# Test cases
assert smallest_num([10, 20, 1, 45, 99]) == 1
assert smallest_num([1, 2, 3]) == 1
assert smallest_num([45, 46, 50, 60]) == 45
```