/* 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
	{
		Instant instant = Instant.parse( "2022-04-05T05:00:00.000+00:00" ) ;
		Instant instant2 = Instant.parse( "2022-04-05T05:00:00.000Z" ) ;
		
		OffsetDateTime odt = OffsetDateTime.parse( "2022-04-05T05:00:00.000+00:00" ) ;
		OffsetDateTime odt2 = OffsetDateTime.parse( "2022-04-05T05:00:00.000Z" ) ;
		
		System.out.println( "instant: " + instant ) ;
		System.out.println( "instant2: " + instant2 ) ;
		System.out.println( "odt: " + odt ) ;
		System.out.println( "odt2: " + odt2 ) ;
	}
}