class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String s = "01122222222";
    	System.out.println(s.replaceAll("(?<=\\d{3})(\\d{2})+?", "-$1"));
	}
}