import Java.util.*;
/**
* Demo Calendar class.
***/
public class CalendarDemo
{
public static void main(String args[]) throws Exception
{
GregorianCalendar cal = new GregorianCalendar();
cal.setTime(new Date());
System.out.println((cal.get(Calendar.MONTH)+1) + "/" +
cal.get(Calendar.DAY_OF_MONTH) + "/" +
cal.get(Calendar.YEAR));
}
}