public static void main(String[] args) { float bottom = 4.0f; float high = 5.0f; float area = bottom*high/2; System.out.println(area); }