12 lines
152 B
Plaintext
12 lines
152 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.lang.String;
|
||
|
|
||
|
|
||
|
public class CC extends BB {
|
||
|
m(Integer i) {
|
||
|
return "CC";
|
||
|
}
|
||
|
|
||
|
m2(CC x) { return "CC"; }
|
||
|
}
|