Hide

Problem H
Square Deal

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.

\includegraphics[scale=0.6]{sample1.png}
(1.a)
  
\includegraphics[scale=0.6]{sample2.png}
(1.b)
Figure 1: Constructions for the first two examples

Input

The input consists of three lines, with line j containing integers Hj and Wj, designating the height and width of a rectangle, such that 100HjWj1, and such that H1H2H3.

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
Hide

Please log in to submit a solution to this problem

Log in