------
## 最终结论
```python
import math

def otherside_rightangle(a, b):
    # Assuming a and b are the two legs of the right triangle
    return math.sqrt(a**2 + b**2)
```