시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 1024 MB43634931780.051%

문제

Alex has four sticks with positive integer lengths $a_1$, $a_2$, $a_3$, and $a_4$ ($a_1 \le a_2 \le a_3 \le a_4$).

She wants to place them on a plane in such a way that each stick is parallel to one of the two coordinate axes, and the area enclosed by these sticks is as large as possible.

Find this maximum enclosed area.

입력

The input contains four positive integers $a_1$, $a_2$, $a_3$, and $a_4$, each on a separate line, denoting the lengths of the sticks in non-decreasing order ($1 \le a_1 \le a_2 \le a_3 \le a_4 \le 100$).

출력

Print the maximum area that can be enclosed.

예제 입력 1

2
2
4
7

예제 출력 1

8

예제 입력 2

10
10
10
10

예제 출력 2

100

힌트

Here is one optimal way to place the sticks on the plane for the first example:

The enclosed area is shaded in gray.