Give a rectangle R (xmin, xmax, ymin, ymax) and a point p (x,y), test whether the point p is in rectangle R or not.
10121012
Give a rectangle R (xmin, xmax, ymin, ymax) and a point p (x,y), test whether the point p is in rectangle R or not.
The first line: 4 integers(xmin, xmax, ymin, ymax)
The second line: 2 integers(px, py)
(-100<= xmin, xmax, ymin, ymax, px, py <=100)
"Yes" or "No"
0 5 0 5
1 1
Yes