← Back to List
29751번: 삼각형 ↗
Solutions
Python 3
61 B | 61 chars
w, h = map(float, input().split()) print(f"{w * h / 2:.1f}")