//TestPerson.java

public class TestPerson
{
    public static void main(String[] args)
    {
        Student myStudent = new Student("James", 10, 3.2);
        Teacher myTeacher = new Teacher("Dali", 37, "Art");

        myStudent.printInfo();
        System.out.println();
        myTeacher.printInfo();
    }
}

