Math, asked by ronnysingh2717, 6 months ago

write a program to find area of triangle​

Answers

Answered by DharaniC7
1

Answer:

formula = 0.5 * b*h

Step-by-step explanation:

b= input()

h=input()

c= 0.5* b* h

print(c)

Similar questions