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

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

/* 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
	{
		Ideone app = new Ideone();
		app.doIt();
	}
	
	public void doIt() {
		ZoneOffset offset = ZoneOffset.ofHours( -7 );
		OffsetDateTime odt = OffsetDateTime.now( offset );
		String output1 = odt.toLocalTime().toString();
		System.out.println( "Current time in " + offset + ": " + output1 );

		ZoneId denverTimeZone = ZoneId.of( "America/Denver" );
		ZonedDateTime zdt = ZonedDateTime.now( denverTimeZone );
		String output2 = zdt.toLocalTime().toString();
		System.out.println( "Current time in " + denverTimeZone + ": " + output2 );
	}
}