/* 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 final List<LocalDate> dates;

    // Constructor
    public Ideone( long counter, long orderNumber, LocalDate... args ) {
        dates = Arrays.asList( args ) ;
    }

	public static void main (String[] args) throws java.lang.Exception
	{
		Ideone x = new Ideone( 7, 42, LocalDate.of( 2021 , 1 , 23 ) , LocalDate.now() ) ;
        System.out.println( x.dates ) ;
	}
}