5 lines
106 B
Java
5 lines
106 B
Java
class AddOperator{
|
|
Integer method(Integer x, Integer y){
|
|
return x + y;
|
|
}
|
|
} |