class AddFloatOperator{
        Float method(Float x, Float y){
                return x + y;
        }
}