Python3
def main(c, a):
b = (c**2 - a**2)**0.5
return b, a*b/2
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Python3
def main(c, a):
b = (c**2 - a**2)**0.5
return b, a*b/2