Write a program that reads a number n and a sequence of n or more words, and prints the first n words reversed.
Input
Input begins with a natural number n, followed by, at least, n words.
Output
Print the first n words of the original sequence, in reverse order, and one per line.
Observation
For the sake of practice, use recursion (not arrays).
Input
3 jordi mireia arnau
Output
arnau mireia jordi
Input
7 dolphins octopuses squid sharks whales piranhas killerwhales fish
Output
killerwhales piranhas whales sharks squid octopuses dolphins