Python Program to find area of triangle

Program

base = int(input("Enter the base of the triangle:\t"))
height = int(input("Enter the height of the triangle:\t"))
area = 0.5 * base * height
print("The area of triangle is: {0}".format(area))

Output

Enter the base of the triangle:	6
Enter the height of the triangle:	7
The area of triangle is: 21.0