// Stage A: outputting the current date and time to the screen.
// Barry Cornelius, 19 June 2000
import java.util. Date;
public class GetDateProg
{
   public static void main(final String[] pArgs)
   {
      final Date tDate = new Date();
      System.out.println(tDate);
   }
}
