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

class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String s = "Input one Input Two Input Three";
		String[] result = s.split("Input");
		System.out.println(Arrays.toString(result));
	}
}