#include <iostream> using namespace std; #include <iostream> using namespace std; class Shape { private: int x, y; public: Shape(int _x, int _y) : x(_x), y(_y) {} virtual double GetArea() const = 0; }; class Rectangle : public Shape { private: int length, width; public: Rectangle(int _x,...