Here\'s the code
def check_right_angle(a, b, c): if a**2 + b**2 == c**2: return True return False def mn_to_abc(m, n): return m**2 - n**2