Files
kattis/triarea.py
2022-05-13 21:35:08 +02:00

3 lines
49 B
Python

h, b = map(int, input().split(" "))
print(h*b/2)