# 1043 triangle a, b, c = map(float,input().split()) if a+b > c and b+c > a and a+c > b: peri = a+b+c print("Perimetro = {:.1f}".format(peri)) else: area = ((a+b)/2) *c print("Area = {:.1f}".format(area))