5 lines
110 B
Java

class GreaterOperator{
Boolean method(Integer x, Integer y){
return x > y;
}
}