from math import sqrt
print('Введите первый катет:')
a = float(input())
print('Введите второй катет:')
b = float(input())
print('Площадь:', a * b / 2)
c = sqrt(a * a + b * b)
print('Периметр:', a + b + c)
print('Гипотенуза:', c)
from math import sqrt
print('Введите первый катет:')
a = float(input())
print('Введите второй катет:')
b = float(input())
print('Площадь:', a * b / 2)
c = sqrt(a * a + b * b)
print('Периметр:', a + b + c)
print('Гипотенуза:', c)