Codeforces solution 50A Domino piling

#include<stdio.h>
int main()
{
    int x,y,d;
    scanf("%d %d",&x,&y);
    d=x*y/2;
    printf("%d\n",d);
    return 0;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes