#include <iostream>using namespace std;class MyInt{private: /**********************加法重载*************************/ friend MyInt operator+(const MyInt &a, const MyInt &b); friend ostream &operator<<(ostream &out, const MyInt &a);&n...