import java.util.Date;
public class Event {
  
  /**
   * What is this event about?
   */
  private String description;
  
  /**
   * create an event with Date d and description s
   */
  public Event(String s) {
    description= s;
  }
  
  
  /**
   * describe this event
   */
  public String toString() {
    return description;
  }
}