// Java applet that loops forever, printing the date and sleeping for 5 seconds.
// Cameron Gregory - cameron@local.com
// http://www.bloke.com/
import java.lang.*;
import java.util.*;

class myc {

	public static void main(String args[])
	{
	  while (true) {
	    System.out.println(new Date());
	    try {
	        Thread.currentThread().sleep(5000);
	        } catch (InterruptedException e) {}
	    }
	}
}
