public class LazyStudent extends Student {
 
  public LazyStudent(String n, int i) {
      super(n, i); 
  }
  
  public String getStudyHabits() {

    // call getStudyHabits method in class Student.
    return super.getStudyHabits()
      + "maybe later.";
  }

  
}
