#include <iostream>

struct A
{
	bool operator==(const A& rhs) const { return this == &rhs ; }
	
	int a ;
};

int main() {
	A a {2}, b{2};
	std::cout << std::boolalpha << (a == b);
	return 0;
}