#D4680. Circle in a Rectangle

    ID: 3890 Type: Default 1000ms 134MiB

Circle in a Rectangle

Circle in a Rectangle

Write a program which reads a rectangle and a circle, and determines whether the circle is arranged inside the rectangle. As shown in the following figures, the upper right coordinate (W,H)(W, H) of the rectangle and the central coordinate (x,y)(x, y) and radius rr of the circle are given.

Circle inside a rectangle

Constraints

  • 100x,y100 -100 \leq x, y \leq 100
  • 0<W,H,r100 0 < W, H, r \leq 100

Input

Five integers WW, HH, xx, yy and rr separated by a single space are given in a line.

Output

Print "Yes" if the circle is placed inside the rectangle, otherwise "No" in a line.

Examples

Input

5 4 2 2 1

Output

Yes

Input

5 4 2 4 1

Output

No

inputFormat

Input

Five integers WW, HH, xx, yy and rr separated by a single space are given in a line.

outputFormat

Output

Print "Yes" if the circle is placed inside the rectangle, otherwise "No" in a line.

Examples

Input

5 4 2 2 1

Output

Yes

Input

5 4 2 4 1

Output

No

样例

5 4 2 2 1
Yes