Write a program that prompts for the number of rooms in a house.
Then, take the dimension of each room as below.
Find the
total area of the house and the dimension of the room with the largest perimeter.

Hint:  you can use the following existing classes to solve this problem.

import java.awt.Rectangle;
import java.util.Scanner;
import java.util.ArrayList;