# Program to find the area of the triangle in python.
x = float(input("Enter first side of triangle: "))
y = float(input("Enter second side of triangle: "))
x= float(input("Enter third side of triangle: "))
a = (s*(s-x)*(s-y)*(s-z)) ** 0.5
print("The area of the triangle is ",a)