// Purpose: display a series of four reminders 

public class CalendarDisplay {

	// main(): application entry point
	public static void main(String[] args) {
		System.out.println("Jan 1: send card to mom.");
		System.out.println("May 9: send card to dad.");
		System.out.println("May 15: send card to parents.");
		System.out.println("Sep 20: send card to in-laws.");
	}
}
