(Geometry: two rectangles) Write a program that prompts the user to enter the center $x-, y$ -coordinates, width, and height of two rectangles and determines whether the second rectangle is inside the first or overlaps with the first, as shown in Figure $3.11 .$ Test your program to cover all cases.
Here are the sample runs:
Enter r1's center $x-, y$ -coordinates, width, and height: 2.542 .543 Enter $r 2^{\prime}$ s center $x-, y$ -coordinates, width, and height: 1.550 .53 $r^{2}$ is inside $r 1$
Enter r1's center $x-, y$ -coordinates, width, and height: 1235.5 Enter $r 2^{\prime}$ s center $x-, y$ -coordinates, width, and height: 344.55
$\mathrm{r} 2$ over 7 aps $\mathrm{r} 1$
Enter r1's center $x-, y$ -coordinates, width, and height: 1233 Enter $r 2^{\prime}$ s center $x-, y-$ coordinates, width, and height: 404532
r2 does not over'lap r1