static void Main(string[] args)
            {
                RectangleTwo r = new RectangleTwo();

                r.AcceptDetails();
                r.Display();
                Console.ReadLine();
            }
 static private int Area(RectangleTwo rectangleTwo) => rectangleTwo.Width * rectangleTwo.Height;