17 lines
172 B
Java
Executable File
17 lines
172 B
Java
Executable File
class OL {
|
|
|
|
Integer m(Integer x) { return x + x; }
|
|
|
|
Boolean m(Boolean x) {return x || x; }
|
|
}
|
|
|
|
class Main {
|
|
|
|
main(x) {
|
|
ol;
|
|
ol = new OL();
|
|
return ol.m(x);
|
|
}
|
|
|
|
}
|