def calculate_height(S, a):height = (2 S) / (a2)return round(height, 2)
S = 20a = 4
height = calculate_height(S, a)print("Высота треугольника:", height)
def calculate_height(S, a):
height = (2 S) / (a2)
return round(height, 2)
S = 20
a = 4
height = calculate_height(S, a)
print("Высота треугольника:", height)