#include <iostream>
using namespace std;

struct A
{
	int t;
	A& add(const A& a) { return *this = *this + a; }
	A operator+(const A& b) const
	{
		A temp;
		temp.t += t + b.t;
		return temp;
	}
};

int main() {
	// your code goes here
	return 0;
}