contains
that will be placed inside the Rectangle
class.
The method accepts integers for x and y as parameters and turns true
if that x/y coordinate lies within this rectangle.
The edges are included; for example, a rectangle with x=2, y=5, width=8, height=10 will return true
for any point from (2, 5) through (10, 15) inclusive.