//*****************************************************************************
// Employee user class                          
//*****************************************************************************

public class EmployeeUser	
{
    public static void main(String[] args)
    {
        String dt = Employee.date_time;
        System.out.println("Date/Time: " + dt);
        
        Employee e = new Employee("dir","Sultan","Sam","M",50);

    }
}