import java.util.Date;
class DateApp {
	public static void main(String args[]) throws java.io.IOException {
		Date today = new Date();
		int j = 3;
		int i;
		boolean q;
		do {
			for (i = 0, q = false; i < 10; i++) {
				System.out.print(i + "\t");
			}
		} while (--j != 0);
		System.out.println(" " + today);
	}
}
