23 lines
225 B
Text
23 lines
225 B
Text
|
class Main {
|
||
|
|
||
|
int m() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
|
||
|
int res;
|
||
|
res = -1;
|
||
|
|
||
|
res = m();
|
||
|
write(res);
|
||
|
writeln();
|
||
|
|
||
|
res = this.m();
|
||
|
write(res);
|
||
|
writeln();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|