/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;
import java.time.*;
import java.time.format.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String input = "Friday, September 26, 2008 8:30 PM Eastern Daylight Time" ;
		DateTimeFormatter f = DateTimeFormatter.ofPattern( "EEEE, MMMM d, uuuu h:m a zzzz" );
		f = f.withLocale( Locale.US );
		ZonedDateTime zdt = ZonedDateTime.parse( input , f );
		ZoneId z = zdt.getZone();
		
		System.out.println( input );
		System.out.println( zdt );
		System.out.println( z );
	}
}