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

public class Main {
	public static void main(String[] args) {
		ZonedDateTime now = ZonedDateTime.now(ZoneId.of("America/New_York"));
		ZonedDateTime afterOneMin = now.plusMinutes(1);
		ZonedDateTime afterFiveMin = now.plusMinutes(5);
		
		System.out.println(now);
		System.out.println(afterOneMin);
		System.out.println(afterFiveMin);
	}
}