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

import java.util.*;
import java.lang.*;
import java.io.*;

import java.time.*;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.time.format.TextStyle;
import java.time.temporal.TemporalAdjuster;
import java.time.temporal.TemporalAdjusters;
import java.time.temporal.WeekFields;
import java.util.*;

/* 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
	{
		Instant instant = Instant.parse( "2021-08-31T22:00:00Z" );
		ZoneId z = ZoneId.of( "Europe/Stockholm" );
		ZonedDateTime zdt = instant.atZone( z );
		LocalDate ld = zdt.toLocalDate();
		DateTimeFormatter f = DateTimeFormatter.ofPattern( "dd-MM-uuuu" );
		String output = ld.format( f );
		
		System.out.println( zdt  ) ;
	}
}