mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 20:13:14 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user