#include using namespace std; class CVector { public: int x,y; CVector () {}; CVector (int,int); CVector operator + (CVector); };