static void MakeShapeHollow(Shape s)
 {
     if (s.Area() > s.Perimeter())
     {
         s.MakeHollow();
     }
 }