import java.util.Scanner;


public class triangle {


public static void main(String[] args) {

Scanner ta= new Scanner(System.in);

double Baseline, Height, Width;

System.out.print("Enter the Baseline:");

Baseline = ta.nextDouble();

System.out.print("Enter the Height:");

Height = ta.nextDouble();

Width = Baseline*Height/2.0;

System.out.println("Here are the values that you entered");

System.out.println(Width);


삼각형 넓이 모르는거 있으면 다 가져오셈 ㅋㅅㅋ