n, m = map(int, input().split()) print((n % 2) * (m // 4) + (m % 2) * (n // 4))