All I want is the last two columns printed.
Please try this out to take into account all possible scenarios:
awk '{print $(NF-1)"\t"$NF}' file
or
awk 'BEGIN{OFS="\t"}' file
awk '{print $(NF-1), $NF} {print $(NF-1), $NF}' file