สถานะการส่งล่าสุด: -

SOS11: Operators 02

Operators 02

Write a code to calculate an area of a triangle by receiving the base length and height from the user.

base: 10
height: 5
25.0
base: 20.2
height: 5.0
50.5

base = (input())
height = (input())
area = 
print(area)