class Client {

//Author: Tony Capone
//CSCI15A Section 5
static final int INPUT_MAX=5;

public static void main (String[] arg) {
GradeBook gpas = new GradeBook(INPUT_MAX);
gpas.getInput();
gpas.display();
}
}

