------
## 最终结论
```python
def hamming_Distance(x, y):
    return bin(x ^ y).count('1')
```