class SmallerEqualOperator{
        Boolean method(Integer x, Integer y){
                return x <= y;
        }
}