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