100520: [AtCoder]ABC052 A - Two Rectangles

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

Score : $100$ points

Problem Statement

There are two rectangles. The lengths of the vertical sides of the first rectangle are $A$, and the lengths of the horizontal sides of the first rectangle are $B$. The lengths of the vertical sides of the second rectangle are $C$, and the lengths of the horizontal sides of the second rectangle are $D$.

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.
  • $1≤A≤10^4$
  • $1≤B≤10^4$
  • $1≤C≤10^4$
  • $1≤D≤10^4$

Input

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

$A$ $B$ $C$ $D$

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=15$, and the second rectangle has an area of $2×7=14$. Thus, the output should be $15$, the larger area.


Sample Input 2

100 600 200 300

Sample Output 2

60000

Input

题意翻译

有两个长方形,第一个长为 $A$,宽为 $B$,第二个长为 $C$,宽为 $D$。 输出较大的那个长方形的面积。

加入题单

算法标签: