8 lines
131 B
Plaintext
8 lines
131 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.lang.String;
|
||
|
|
||
|
public class AA {
|
||
|
m(Integer i) { return "AA"; }
|
||
|
|
||
|
m2(AA x) { return "AA"; }
|
||
|
}
|