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

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

/* 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
	{
	
	String strDate = "2017-12-08";
	SimpleDateFormat oldFormat =  new SimpleDateFormat("yyyy-MM-dd");
	SimpleDateFormat newFormat = new SimpleDateFormat("dd/MM/yyyy");
    
	System.out.print(newFormat.format(oldFormat.parse(strDate)));
	}
}