Ответ:
from math import sqrt
a, b=int(input('катет: ')) , int(input('гiпотенуза: '))
print((a*sqrt(b**2-a**2))/2)
Объяснение:
Все вище
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
from math import sqrt
a, b=int(input('катет: ')) , int(input('гiпотенуза: '))
print((a*sqrt(b**2-a**2))/2)
Объяснение:
Все вище