{"raw_statement":[{"iden":"problem statement","content":"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$.\nPrint the area of the rectangle with the larger area. If the two rectangles have equal areas, print that area."},{"iden":"constraints","content":"*   All input values are integers.\n*   $1≤A≤10^4$\n*   $1≤B≤10^4$\n*   $1≤C≤10^4$\n*   $1≤D≤10^4$"},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$A$ $B$ $C$ $D$"},{"iden":"sample input 1","content":"3 5 2 7"},{"iden":"sample output 1","content":"15\n\nThe 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."},{"iden":"sample input 2","content":"100 600 200 300"},{"iden":"sample output 2","content":"60000"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}