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

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

/* 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
	{
		LocalDate dt1 = LocalDate.parse("15/08/2020", DateTimeFormatter.ofPattern("dd/MM/yyyy"));

		DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");

		System.out.println(dt1.format(formatter));
	}
}