mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 06:13:28 +00:00
13 lines
229 B
C#
13 lines
229 B
C#
using System;
|
|
|
|
namespace problem_50A
|
|
{
|
|
class problem_50A
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
int[] a = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
|
|
Console.WriteLine("{0}", a[0] * a[1] / 2);
|
|
}
|
|
}
|
|
} |