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