import math a,b,c = map(int, input().split()) p = (a+b+c)/2 q = p*(p-a)*(p-b)*(p-c) d = math.sqrt(q) e = round(d, 2) print(e)