2738.Gerald is into Art

Time Limit: 1s Memory Limit: 256MB

Gerald bought two very rare paintings at the Sotheby's auction and he now wants to hang them on the wall. For that he bought a special board to attach it to the wall and place the paintings on the board. The board has shape of an a1 \times b1 rectangle, the paintings have shape of a a2 \times b2 and a3 \times b3 rectangles.Since the paintings are painted in the style of abstract art, it does not matter exactly how they will be rotated, but still, one side of both the board, and each of the paintings must be parallel to the floor. The paintings can touch each other and the edges of the board, but can not overlap or go beyond the edge of the board. Gerald asks whether it is possible to place the paintings on the board, or is the board he bought not large enough?

Input Format(From the terminal/stdin)

Input The first line contains two space-separated numbers a1 and b1 - the sides of the board. Next two lines contain numbers a2,b2,a3 and b3 - the sides of the paintings. All numbers ai,bi in the input are integers and fit into the range from 1 to 1000.

Output Format(To the terminal/stdout)

Output If the paintings can be placed on the wall, print "YES" (without the quotes), and if they cannot, print "NO" (without the quotes).

Sample Input 1

Copy
3 2
1 3
2 1
 · \n
 · \n
 · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
5 5
3 3
3 3
 · \n
 · \n
 · \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
4 2
2 3
1 2
 · \n
 · \n
 · \n

Sample Output 3

Copy
YES
   \n

Hints

That's how we can place the pictures in the first test:2738_1.pngAnd that's how we can do it in the third one.2738_2.png

Submit

请先 登录

© 2025 FAQs