Program qq; var a,b,c,S,p:real; begin read(a,b,c); p:=a+b+c/2; S:=sqrt(p*(p-a)*(p-b)*(p-c)); writeln(S); end.