#include<bits/stdc++.h> using namespace std; int main(){ double a,h,S; cin>>a>>h; S=(a*h)/2; printf("%.2lf",S); return 0; }