Problem1047--Circle in a Rectangle

1047: Circle in a Rectangle

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

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.


Input

Five integers WWHHxxyy and rr separated by a single space are given in a line.
constraints: $ -100 \leq x , y \leq 100 $   and $ 0 < W, H, r \leq 100 $


Output

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

Sample Input Copy

5 4 2 2 1

Sample Output Copy

Yes

Source/Category