this program calculates the area of a right triangle #ask for input
b=input('Enter the triangle base:')
h=input('Enter the triangle height:')
Calculate and print area
Area=(b*h)/2
Print '\n The base is '+str(b) + 'units'
Print 'The height is 'str(h) + 'units'
Print '\n The area is 'str(area + 'units'