ydpetkov

triangle_area

Jul 13th, 2022
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. side = float(input())
  2. height = float(input())
  3.  
  4. area = side * height / 2
  5. print(f'{area:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment