PROGRAMMING:Irony - enhanced version
Given an English sentence, you are required to write a program to reverse the order of all the words in the sentence.
###Input format:
The test input contains a test case that gives a string with a total length of no more than 500 000 in one line. The string is composed of several words and spaces. The word is a string composed of English letters (case sensitive). The words are separated by several spaces.
###Output format:
The output of each test case takes up one line, outputs the sentences in reverse order, and ensures that there is only one space between words.
###Input example:
```in
Hello World Here I Come
```
###Output example:
```out
Come I Here World Hello
```
**Thanks to Mr. Li Weiming of Hangzhou University of Electronic Science and technology for correcting the data! Thanks to Shi Xifan of Zhijiang College of Zhejiang University of technology for correcting the test points**
answer:If there is no answer, please comment
###Input format:
The test input contains a test case that gives a string with a total length of no more than 500 000 in one line. The string is composed of several words and spaces. The word is a string composed of English letters (case sensitive). The words are separated by several spaces.
###Output format:
The output of each test case takes up one line, outputs the sentences in reverse order, and ensures that there is only one space between words.
###Input example:
```in
Hello World Here I Come
```
###Output example:
```out
Come I Here World Hello
```
**Thanks to Mr. Li Weiming of Hangzhou University of Electronic Science and technology for correcting the data! Thanks to Shi Xifan of Zhijiang College of Zhejiang University of technology for correcting the test points**
answer:If there is no answer, please comment