/* package whatever; // don't place package name! */
importjava.util.*;
importjava.lang.*;
importjava.io.*;
importjava.time.*;
importjava.time.format.*;
importjava.time.temporal.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
publicstaticvoid main (String[] args)throws java.lang.Exception
{
Instant instant = Instant.parse("2019-11-26T19:30:00Z");// Default format for parsing a moment in UTC.
ZoneId z = ZoneId.of("America/Edmonton");// A time zone is a history of past, present, and future changes to the offset used by the people of a particular region.
ZonedDateTime zdt = instant.atZone( z );// Same moment, same point on the timeline, different wall-clock time.