Let's see:

What I really want to do is to make a new file that will have the previous character string on the left side or the "token". Next I want to continue to read the same string. Next, I want to break the right side into smaller parts between white space characters and print a new line with the left side, token, right side.

Example:


Input file:
------------
12 ? a g e



This is my desired output:
--------------------------------

12 ? a
12 ? g
12 ? e

Thanks