public class PersonMain {
  public static void main(String []args) {
    Student dipper = new Student("Dipper",
                                 "Pines",
                                 14, 
                                 "beware@gf.com",
                                 "EES");

    System.out.println(dipper.about());
  }
}
