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