mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +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();
|
|
}
|
|
}
|