import java.text.*;
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
	{
		SimpleDateFormat serverToClientFormat =
			new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssX",Locale.getDefault());
		System.out.println(serverToClientFormat.parse("2017-01-01T01:34:00+00:00"));
	}
}