from math import * n = input().split(" ") a, b, c = int(n[0]), int(n[1]), int(n[2]) p = (a+b+c)0.5 s = sqrt(p(p-a)(p-b)(p-c)) print("%.1lf" %s)