/* 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
	{
		String input = "2016-03-13T02:20:00" ;
        LocalDateTime ldt = LocalDateTime.parse( input );
        ZoneId z = ZoneId.of( "America/Los_Angeles" );
        ZonedDateTime zdt = ldt.atZone( z );
        System.out.println( "input: " + input + " | " + "zdt: " + zdt );
	}
}