A. Domino piling Solution

#include <iostream>

using namespace std;

int main()
{
    int M, N;
    cin >> M >> N;
    cout << M * N / 2 << endl;
    return 0;
}

No comments

Theme images by enot-poloskun. Powered by Blogger.