A - Two Rectangles Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100

問題文

二つの長方形があります。 一つ目の長方形は、縦の辺の長さが A、横の辺の長さが B です。 二つ目の長方形は、縦の辺の長さが C、横の辺の長さが D です。

この二つの長方形のうち、面積の大きい方の面積を出力してください。 なお、二つの長方形の面積が等しい時は、その面積を出力してください。

制約

  • 入力は全て整数である
  • 1≦A≦10^4
  • 1≦B≦10^4
  • 1≦C≦10^4
  • 1≦D≦10^4

入力

入力は以下の形式で標準入力から与えられる。

A B C D

出力

大きい方の長方形の面積を出力せよ。 二つの長方形の面積が等しいなら、その面積を出力せよ。


入力例 1

3 5 2 7

出力例 1

15

一つ目の長方形の面積は 3×5=15 で、二つ目の長方形の面積は 2×7=14 です。 よって、大きい方の面積である 15 を出力します。


入力例 2

100 600 200 300

出力例 2

60000

どちらの長方形の面積も 60000 なので、60000 を出力します。

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