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

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

import java.time.* ;
import java.time.format.* ;
import java.time.temporal.* ;
import java.time.chrono.* ;
import java.time.zone.* ;


/* 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
	{

    LocalDate localDate1 = LocalDate.of( 2020 , Month.JANUARY , 23 ) ;
	HijrahDate hijrahDate = HijrahDate.from( localDate1 ) ;
	LocalDate localDate2 = LocalDate.from( hijrahDate ) ;
	
	LocalDate later = localDate2.plus( Period.ofDays( 5 ) ) ;
	
	boolean match = localDate1.isEqual( localDate2 ) ;
	
	System.out.println( "localDate1.toString(): " + localDate1 ) ;
	System.out.println( "hijrahDate.toString(): " + hijrahDate ) ;
	System.out.println( "localDate2.toString(): " + localDate2 ) ;
	System.out.println( "match: " + localDate1.isEqual( localDate2 ) ) ;
	System.out.println( "later.toString(): " + later ) ;
	

	}
}