import java.util.Arrays;

public class Main {
	public static void main(String[] args) {
		String raw = "\"AKINWALE JOHNSON ROTIMI                                \"   \"100000072      \"       \"1985"
				+ "0217                         \"  \"                                                                                \"      \"0250000066               \""
				+ "\"                                                         08035558619\"  \"22324902758    \"       \"NG0250002    \" \"9113985      \"";

		String[] split = raw.split("\\s*\"\\s*");
		Arrays.stream(split).forEach(System.out::println);
	}
}