The Java Program: Three.java

  1 class Three {
  2    static int gety () {return y;}
  3    static int x = gety();
  4    static int y = 1;
  5    static { System.out.println (x+"  "+y); }
  6 
  7    public static void main (String args[]) {
  8    }
  9 }