from math import sqrt def Area(a,b,c): s=(a+b+c)/2 return sqrt(s*(s-a)*(s-b)*(s-c)) a,b,c=map(int,input().split()) print(Area(a,b,c)/4)