Bounding Boxes
time limit per test
2 seconds
memory limit per test
1024 megabytes
input
standard input
output
standard output

ICPC is considering sending out contest souvenirs via a delivery service. The delivery service provides multiple types of packing boxes, each shaped as a rectangular parallelepiped.

Unfortunately, there is no way to know which packing box type will be available on the shipping day, so ICPC needs to choose a souvenir box size that fits inside every packing box.

According to the shipment rules, the souvenir box must also be a rectangular parallelepiped. When placed inside a packing box, the souvenir box may be rotated, but its sides must remain parallel to the sides of the packing box. Extra space is not an issue, as it will be filled with plastic wrap.

Help ICPC determine the maximum possible volume of a souvenir box that fits inside all of the packing boxes.

Input

The first line contains a single integer $$$n$$$, denoting the number of packing box types provided by the delivery service ($$$1 \le n \le 1000$$$).

The $$$i$$$-th of the following $$$n$$$ lines contains three integers $$$w_i$$$, $$$h_i$$$, and $$$d_i$$$, denoting the width, height, and depth of the $$$i$$$-th packing box ($$$1 \le w_i, h_i, d_i \le 1000$$$).

Output

Print the largest possible volume of a souvenir box that fits inside all of the packing boxes. Remember that the souvenir box can be rotated, as long as its sides remain parallel to the sides of the packing box.

Example

Input
3
6 5 6
2 10 10
3 8 4
Output
48

Note

In the example, the largest souvenir box that fits in each of the packing boxes has dimensions $$$2 \times 4 \times 6$$$. It fits in the first two packing boxes without rotation, and it can be rotated to become $$$2 \times 6 \times 4$$$ to fit in the third packing box.