{"raw_statement":[{"iden":"problem statement","content":"There is a rectangle in a coordinate plane. The coordinates of the four vertices are $(0,0)$, $(W,0)$, $(W,H)$, and $(0,H)$. You are given a point $(x,y)$ which is within the rectangle or on its border. We will draw a straight line passing through $(x,y)$ to cut the rectangle into two parts. Find the maximum possible area of the part whose area is not larger than that of the other. Additionally, determine if there are multiple ways to cut the rectangle and achieve that maximum."},{"iden":"constraints","content":"*   $1 \\leq W,H \\leq 10^9$\n*   $0\\leq x\\leq W$\n*   $0\\leq y\\leq H$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$W$ $H$ $x$ $y$"},{"iden":"sample input 1","content":"2 3 1 2"},{"iden":"sample output 1","content":"3.000000 0\n\nThe line $x=1$ gives the optimal cut, and no other line does."},{"iden":"sample input 2","content":"2 2 1 1"},{"iden":"sample output 2","content":"2.000000 1"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}