#include <iostream>
#include <string>
#include <vector>
using namespace std;
class MyInteger {
friend ostream& operator<<(ostream& cout, MyInteger& myint);
private:
int m_A;
public:
MyInteger() {
m_A = 0
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class MyInteger {
friend ostream& operator<<(ostream& cout, MyInteger& myint);
private:
int m_A;
public:
MyInteger() {
m_A = 0