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