import math a,b,c = map(int,input().split()) p = 1/2*(a+b+c) s = math .sqrt(p*(p-a)*(p-b)*(p-c)) print('%.1/f'%s)
为什么会RE啊,有点疯