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

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String text = "The urn was then carried for several rounds around the cremation site, for the last leg of the procession.";
		String[] results = text.split("\\W+");
		System.out.println(Arrays.toString(results));
	}
}