import math
a = int(input('Введите a: '))
b = int(input('Введите b: '))
c = int(input('Введите c: '))
print(0.5 * math.sqrt(2 * b ** 2 + 2 * c ** 2 - 2 * a ** 2))
import math
a = int(input('Введите a: '))
b = int(input('Введите b: '))
c = int(input('Введите c: '))
print(0.5 * math.sqrt(2 * b ** 2 + 2 * c ** 2 - 2 * a ** 2))