+ Time limit: 0.5 seconds
+ Memory limit: 256 megabytes
----------
In this problem, you must write a program that receives $n$ words from the input, reverses the order of the words, and prints them to the output.
# Input
In the first line of the input, $n$ is given, representing the number of words.
In the second line of the input, $n$ words are given, separated by spaces. The characters used in these words are lowercase and uppercase English letters. The total length of all words does not exceed 1000 characters.
$$ 1 \le n \le 100 $$
# Output
In the single line of output, print the given words in the reverse order of the input. Note that the casing (uppercase and lowercase) of the output letters must match the input letters.
## Example
## Sample Input
```
11
I Am from Iran it iS rainy and i like rain
```
## Sample Output
```
rain like i and rainy iS it Iran from Am I
```
Question Programming Programming Question