{"raw_statement":[{"iden":"problem statement","content":"For positive integers $X$ and $Y$, a rectangle in a two-dimensional plane that satisfies the conditions below is said to be **good**.\n\n*   Every edge is parallel to the $x$\\- or $y$\\-axis.\n*   For every vertex, its $x$\\-coordinate is an integer between $0$ and $X$ (inclusive), and $y$\\-coordinate is an integer between $0$ and $Y$ (inclusive).\n\nDetermine whether it is possible to place the following three good rectangles without overlapping: a good rectangle of an area at least $A$, another of an area at least $B$, and another of an area at least $C$.\nHere, three rectangles are considered to be non-overlapping when the intersection of any two of them has an area of $0$."},{"iden":"constraints","content":"*   $1 \\leq X, Y \\leq 10^9$\n*   $1 \\leq A, B, C \\leq 10^{18}$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$X$ $Y$ $A$ $B$ $C$"},{"iden":"sample input 1","content":"3 3 2 2 3"},{"iden":"sample output 1","content":"Yes\n\nThe figure below shows a possible placement, where the number in a rectangle represents its area.\nWe can see that $2 \\geq A, 3 \\geq B, 3 \\geq C$, satisfying the conditions.\n![image](https://img.atcoder.jp/ghi/abc223e_sample.png)"},{"iden":"sample input 2","content":"3 3 4 4 1"},{"iden":"sample output 2","content":"No\n\nThere is no possible placement under the conditions."},{"iden":"sample input 3","content":"1000000000 1000000000 1000000000000000000 1000000000000000000 1000000000000000000"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}