# Arup Guha
# 12/9/2025
# Solution to 2025 UCF HS Online D2 Problem H: Sportsball field.

# Get the input.
vals = [int(x) for x in input().split()]

# The biggest triangle is half of the rectangle.
print( (vals[0]*vals[1])/2 )
