PR29013.java 189 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
public class PR29013 {
  public static int result() { return 5; }

  public static void computeResult() { result(); }

  public static void main(String[] args) {
    computeResult();
  }
}