Advertisement
aneliabogeva

Triangle Area

Apr 15th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. b1 = float(input())
  2. h = float(input())
  3.  
  4. area = (b1*h)/2
  5.  
  6. print(f"{area:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement