imoprt java.util.Date; class DatePrint { public static void main(String[] args) { Date d = new Date(); System.out.println("today = " + d); } }