class DateTest { public static void main( String[ ] args ) { Date d = new Date( 8, 23, 2003 ); for( int i = 0; i < 3; i++ ) d.printDate( ); } }