#include <iostream> #include <vector> using namespace std; class Myvector { public: Myvector(int x, int y) { this->x = x; this->y = y; } int x; int y; Myvector operator+(Myvector& v) { Myvector v1(0,0); v1.x = this->x + v.x...