import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Main {
	public static void main(String[] args) {
		LocalDate today = LocalDate.now();
		// Note: Change the ZoneId as applicable e.g. ZoneId.of("Europe/London")

		ZonedDateTime zdt = today.atStartOfDay().atZone(ZoneId.systemDefault());
		System.out.println(zdt);

		OffsetDateTime odt = zdt.toOffsetDateTime();
		System.out.println(odt);
	}
}