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) of the rectangle and the central coordinate (x,y) and radius r of the circle are given.
Five integers W, H, x, y and r separated by a single space are given in a line.
Print "Yes" if the circle is placed inside the rectangle, otherwise "No" in a line.
5 4 2 2 1
Yes
5 4 2 4 1
No