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