Triangle Area

This commit is contained in:
2022-05-11 23:32:16 +02:00
parent cbcc4adf2b
commit 794e3777d1

3
triarea.py Normal file
View File

@@ -0,0 +1,3 @@
h, b = map(int, input().split(" "))
print(h*b/2)