#include <iostream>
 
class A {
public:
bool operator()(int x,int y)
{return x<y;}
};
 
int main() {
A a;

std::cout << a(1, 2) << std::endl;
}