#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 , and the lengths of the horizontal sides of the first rectangle are . The lengths of the vertical sides of the second rectangle are , and the lengths of the horizontal sides of the second rectangle are .
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.
Input
The input is given from Standard Input in the following format:
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 , and the second rectangle has an area of . Thus, the output should be , the larger area.
Sample Input 2
100 600 200 300
Sample Output 2
60000