class RetrieveInteger{ public static void main(String[] a){ GetInteger i ; int j ; i = new GetInteger() ; j = i.Get() ; System.out.println(j) ; } } class GetInteger { public int Get(){ return 4 ; } }