#include <iostream>
using namespace std;

struct Foo
{
	bool operator==(const Foo& other)	
	{
	    std::cout << "Side effects!" << std::endl;
	    return true;
	}
};

int main() {
	// your code goes here
	Foo a, b;
	a == b;
	return 0;
}
