Stuart has n rectangular frames, which are numbered from 1 to n. Frame i is a rectangle with height h\[i] and width w\[i].
The size of a frame is the area that it covers. Stuart wants you to help him find the area covered by the largest size frame that he has.
The first line of input contains exactly 1 integer, n.
The next n lines of input contains two space-separated integers each. The i-th such line of input will contain h\[i] and w\[i] respectively, representing the height and width of frame i.
The output should contain one integer, the area covered by the largest size frame Stuart has.