from math import sqrt
a, b=int(input('катет: ')) , int(input('гiпотенуза: '))
print((a*sqrt(b**2-a**2))/2)
Объяснение:
Все вище
from math import sqrt
a, b=int(input('катет: ')) , int(input('гiпотенуза: '))
print((a*sqrt(b**2-a**2))/2)
Объяснение:
Все вище