100 atcoder#ABC052A. [ABC052A] Two Rectangles
[ABC052A] Two Rectangles
Score : points
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.
3 5 2 7
15
The first rectangle has an area of , and the second rectangle has an area of . Thus, the output should be , the larger area.
100 600 200 300
60000