#include <iostream>

class Foo {
public:
int operator=(const Foo& c) {
	return 666;
}
};

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