OneCompiler

Beecrowd 1043, Triangle

225


A,B,C = list(map(float,input().split()))
if A+B>C and A+C>B and B+C>A:
print(f'Perimetro = {(A+B+C):.1f}')
else:
print(f'Area = {(0.5*(A+B)*C):.1f}')