mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
10 lines
189 B
Java
10 lines
189 B
Java
|
public class PR29013 {
|
||
|
public static int result() { return 5; }
|
||
|
|
||
|
public static void computeResult() { result(); }
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
computeResult();
|
||
|
}
|
||
|
}
|