#include <iostream>
using namespace std;

class Foo {
	inline friend bool operator==(const Foo& f1, const Foo& f2) {
		return true;
	}
};

int main(void) {
	Foo f1, f2;
	cout << operator==(f1, f2);
	return 0;
}