mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 18:14:22 +00:00
16 lines
309 B
Java
16 lines
309 B
Java
package com.company;
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
// write your code here
|
|
Scanner sc = new Scanner(System.in);
|
|
int m = sc.nextInt();
|
|
int n = sc.nextInt();
|
|
int out = m*n/2;
|
|
System.out.print(out);
|
|
}
|
|
}
|