Given the dimensions of three rectangles, determine if all
three can be glued together, touching just on the edges, to
form a square. You may rotate the rectangles. For example,
Figure 1 shows successful constructions for the first two
sample inputs.
Input
The input consists of three lines, with line containing integers and , designating the height and
width of a rectangle, such that , and
such that .
Output
Output a line saying YES if they can be
glued together to form a square. Output NO
otherwise.
Sample Input 1 |
Sample Output 1 |
7 3
7 1
7 3
|
YES
|
Sample Input 2 |
Sample Output 2 |
9 2
7 4
7 5
|
YES
|
Sample Input 3 |
Sample Output 3 |
3 1
3 2
3 3
|
NO
|