Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
#include<iostream>
using namespace std;
int main(){
int m, n;
cin>>m;
cin>>n;
int sqrAr = 2;
cout<<((m*n)/sqrAr);
return 0;
}
Copy The Code &
Try With Live Editor
Input
2 4
Output
4
Demonstration
Codeforcess Solution 50-A A. Domino piling ,C++, Java, Js and Python ,50-A,Codeforcess Solution