import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Main {
	public static void main(String[] args) {
		// Use the applicable ZoneId
		ZoneId zoneId = ZoneId.of("Asia/Dubai");
		ZonedDateTime now = ZonedDateTime.now(zoneId);
		System.out.println(now);
	}
}