#D4680. Circle in a Rectangle
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 of the rectangle and the central coordinate and radius of the circle are given.
Circle inside a rectangle
Constraints
Input
Five integers , , , and 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 , , , and 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