문제 풀이 import java.io.*; import java.util.*; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // 밑변 double a = sc.nextInt(); // 높이 double b = sc.nextInt(); // 넓이 double c = (a*b) / 2; String str = String.format("%.1f", c); System.out.print(str); } }