import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeFormatterBuilder;
import java.util.Locale;

public class Main {
	public static void main(String[] args) {
		ZonedDateTime now = ZonedDateTime.now(ZoneId.of("Asia/Kolkata"));

		DateTimeFormatter dtf1 = 
				new DateTimeFormatterBuilder()
				.appendPattern("MMMM dd, uuuu 'at' h:mm:ss a 'UTC'")
				.appendOffset("+H:mm", "Z")
				.toFormatter(Locale.ENGLISH);
		
		System.out.println(now.format(dtf1));

		DateTimeFormatter dtf2 = DateTimeFormatter.ofPattern("EEE MMM dd HH:mm:ss OOOO uuuu", Locale.ENGLISH);
		System.out.println(now.format(dtf2));
	}
}