import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Locale;

public class Main {
	public static void main(String[] args) {
		// Test
		System.out.println(getDateCreatedFormatted());
	}

	public static String getDateCreatedFormatted() {
		ZonedDateTime now = ZonedDateTime.now(ZoneId.of("America/New_York"));
		DateTimeFormatter dtf = DateTimeFormatter.ofPattern("EEE MMM d uuuu h:mm:ss a z", Locale.ENGLISH);
		return dtf.format(now);
	}
}