import math
leg1,leg2 = float(input()), float(input())
hypotenuse = math.sqrt(pow(leg1,2) + math.pow(leg2,2))
print("Периметр треугольника равен:",leg1+leg2+hypotenuse)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import math
leg1,leg2 = float(input()), float(input())
hypotenuse = math.sqrt(pow(leg1,2) + math.pow(leg2,2))
print("Периметр треугольника равен:",leg1+leg2+hypotenuse)