import java.io.*;

public class Quiz4 {
	public static void main (String[] args) {

		// Create a mother and two babies
		Mother mary = new Mother ("Mary", 26);	// stmt 1
		Baby fred = new Baby ("Fred");		// stmt 2
		Baby anna = new Baby ("Anna");		// stmt 3

		// Mary gives birth to fred and anna
		mary.giveBirth (fred);			// stmt 4
		mary.giveBirth (anna);			// stmt 5

		// Record some birthdays
		mary.birthday();			// stmt 6
		fred.birthday();			// stmt 7
		anna.birthday();			// stmt 8

		/* You're done.  No modelling required after this point */

		// Print summary information
		mary.printInfo();			// stmt 9
		fred.printInfo();			// stmt 10
		anna.printInfo();			// stmt 11
	}
}
