Find the area of the largest triangle rounded upto one decimal place
Expert's answer
base=int(input("Enter the base of the triangle: "))
heigth=int(input("Enter the heigth of the triangle: "))
area=1/2*base*heigth
print("Area of the triangle is: ", area)