DUE MONDAY AFTER THANKSGIVING
Udacity Problem Set #4, skip #8
Note:
readInt is special to CodeHS. The real way to read a String is to use the Scanner class like this:
Scanner in = new Scanner(System.in);
System.out.println(“Please enter a name: “);
String name = in.read();

