Simply with **`awk`** :
awk '{ print $1 ORS $2 }' file
* `$1` and `$2` \- are the 1st and 2nd field respectively
* `ORS` \- Output Record Separator. The initial value of `ORS` is the string "`\
`" (i.e., a newline character)
* * *
The output:
sam
jam
tommy
bond