#abc052a. [abc052_a]Two Rectangles

[abc052_a]Two Rectangles

Problem Statement

There are two rectangles. The lengths of the vertical sides of the first rectangle are AA, and the lengths of the horizontal sides of the first rectangle are BB. The lengths of the vertical sides of the second rectangle are CC, and the lengths of the horizontal sides of the second rectangle are DD.

Print the area of the rectangle with the larger area. If the two rectangles have equal areas, print that area.

Constraints

  • All input values are integers.
  • 1A1041≤A≤10^4
  • 1B1041≤B≤10^4
  • 1C1041≤C≤10^4
  • 1D1041≤D≤10^4

Input

The input is given from Standard Input in the following format:

AA BB CC DD

Output

Print the area of the rectangle with the larger area. If the two rectangles have equal areas, print that area.


Sample Input 1

3 5 2 7

Sample Output 1

15

The first rectangle has an area of 3×5=153×5=15, and the second rectangle has an area of 2×7=142×7=14. Thus, the output should be 1515, the larger area.


Sample Input 2

100 600 200 300

Sample Output 2

60000