You are on page 1of 4

#include <iostream>

#include <conio.h>
#include <stdio.h>
#include <math.h>

using namespace std;

int main (int argc, char** argv){


int A,B,Area;
cin >> A;
cin >> B;
Area = (B*A)/2;
cout << Area;
return 0;
}

You might also like