import java.util.Date;public class DateExample{ public static void main (String [] args) { Date date = new Date(); System.out.println(date); } }