PROGRAMMING:Remove extra space
This topic requires reading a line of string, remove the first and last of the extra space output.
###Input format:
A string, unlimited length, to end with a newline, but the program requires reading no more than 30.
###Output format:
First output the read string in a pair of [], and then output the string after removing the first and last spaces in the next line of a pair of [].
###Input example:
```in
Xiangyang, Hubei
```
###Output example:
```out
[Xiangyang, Hubei]
[Xiangyang, Hubei]
```
answer:If there is no answer, please comment
###Input format:
A string, unlimited length, to end with a newline, but the program requires reading no more than 30.
###Output format:
First output the read string in a pair of [], and then output the string after removing the first and last spaces in the next line of a pair of [].
###Input example:
```in
Xiangyang, Hubei
```
###Output example:
```out
[Xiangyang, Hubei]
[Xiangyang, Hubei]
```
answer:If there is no answer, please comment