import java.util.Scanner; class Numbers { final public static int MAX = 20; int []numbers; int readInNumbers() { // Read as many numbers as given on stdin // and return the count of numbers. // Maximum numbers that can be taken is MAX int i=0; Scanner in = new Scanner(System.in); numbers = new int[MAX]; while ((i