Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int n, m;
  6. cin >> m >> n;
  7. cout << (m*n) / 2;
  8. return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement