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

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

import java.time.* ;
import java.time.temporal.* ;
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
	{

        ZoneId z = ZoneId.of( "America/Montreal" );
        LocalDate today = LocalDate.now( z );

        LocalDate monthLater = today.plusMonths( 1 );

        TemporalAdjuster ta = TemporalAdjusters.dayOfWeekInMonth( 3 , DayOfWeek.TUESDAY );
        LocalDate thirdTuesdayOfNextMonth = monthLater.with( ta );

        System.out.println( "Today is " + today + " in zone " + z );
        System.out.println( "Third Tuesday of next month is " + thirdTuesdayOfNextMonth );
        
	}
}