a = int(input('1 катет : '))
b = int(input('2 катет : '))
c = int(((a**2 +b**2)**0.5))
print('Периметр :', a+b+c)
import math
leg1,leg2 = float(input()), float(input())
hypotenuse = math.sqrt(pow(leg1,2) + math.pow(leg2,2))
print("Периметр треугольника равен:",leg1+leg2+hypotenuse)
a = int(input('1 катет : '))
b = int(input('2 катет : '))
c = int(((a**2 +b**2)**0.5))
print('Периметр :', a+b+c)
import math
leg1,leg2 = float(input()), float(input())
hypotenuse = math.sqrt(pow(leg1,2) + math.pow(leg2,2))
print("Периметр треугольника равен:",leg1+leg2+hypotenuse)