blob: 4e90b4354f4bef61915e768905b3983d34513f29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <iostream>
using namespace std;
using namespace std;
int main(){
int a,b;
cin>>a>>b;
int count = 0;
count += (b*a/2);
// 4.5 gets rounded to 4
cout<<count;
return 0;
}
|