#include <iostream> using namespace std; int main() { int M, N; cin >> M >> N; cout << M * N / 2 << endl; return 0; }
No comments