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

import java.util.*;
import java.time.*;
import java.io.*;

/* 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
	{
		System.out.println(LocalDate.of(2016, 3, 26).atStartOfDay(ZoneId.of("Asia/Gaza")));
	}
}