/* 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 instant1 = Instant.parse( "2022-05-05T11:32:12.542Z" ) ;
        Instant instant2 = Instant.parse( "2022-05-06T07:33:46.59928+00:00" ) ;

        System.out.println ( instant1 ) ;
        System.out.println ( instant2 ) ;
	}
}