import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Main {
	public static void main(String[] args) {
		Instant now = Instant.now();
		System.out.println(now);

		ZonedDateTime zdtUTC = now.atZone(ZoneId.of("Etc/UTC"));
		System.out.println(zdtUTC);

		ZonedDateTime zdtNewYork = now.atZone(ZoneId.of("America/New_York"));
		System.out.println(zdtNewYork);
	}
}