class AddIntegerOperator{
        Integer method(Integer x, Integer y){
                return x + y;
        }
}