a,b,c=map(float,input().split()) p=(a+b+c)/2 d=math.sqrt(p*(p-a)(p-b)(p-c)) print(format(d,'.1f'))
这样写为什么全是RE,没找到问题出在哪