I try the solution that is already described here - it does not help. There is no more detailed error, because the robot is checking, and I do not see what it introduces. Here is the code:
# Даны длины сторон треугольника. Вычислите площадь треугольника # площадь по формуле Герона a = int(input()) b = int(input()) c = int(input()) p = (a + b + c) / 2 # полупериметр s = (p * (p - a) * (p - b) * (p - c)) if s < 0: s *= -1 print('{:.6f}'.format(pow(s, 0.5))) Tell me, please, what could be the error
/ 2->/ 2.otherwise it will work "correctly" only in Python 3 - MaxU