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

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

/* 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 dataUS = "2015-02-03 15:37:00";
		
	    SimpleDateFormat oldFormat =  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	    SimpleDateFormat newFormat =  new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
	
		
		System.out.println(newFormat.format(oldFormat.parse(dataUS)));
	}
}