// CS1101 (AY2007/8 Semester 1)
// Practice exercise for PE
// EstimatePI.java
// Written by: Aaron Tan
/**
 * Given any pair of positive integers chosen from a large set of
 * random numbers, the probability that the two integers have 
 * no common factor other than one is 6/pi^2.
 * This program uses the IntegerList class. It reads in a list of 
 * n distinct integers and computes the estimate value for pi.
 */

// add your import statements here

public class EstimatePI {

   public static void main (String[] args) {

      Scanner scanner = new Scanner(System.in);

      int n = scanner.nextInt(); // size of array
      int[] arr = new int[n];

      // complete the rest of the code

   }

}

