public class Greeter {

   public void serviceFound(String studentName) {
    System.out.println(studentName + " has arrived");
  }

   public void serviceLost(String studentName) {
    System.out.println("bye-bye " + studentName);
  }
}
