import java.util.Date;
/**
Output:
The date is Fri May 26 11:04:06 PDT 2006
* */
public class MainClass {
public static void main(String args[]) throws Exception {
Date date = new Date();
System.out.printf("The date is %tc\n", date );
}
}