Problem5502--string的用法5

5502: string的用法5

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入一个字符串,将该字符串反转后输出。如输入123,反转后变成321,然后输出。用string的拼接功能实现。

Input

输入一行:一个字符串

Output

输出一行:
反转后的字符串

Sample 1 Input

123456789

Sample 1 Output

987654321

Sample 2 Input

welcome !

Sample 2 Output

! emoclew

Sample 3 Input

this is a short sentence

Sample 3 Output

ecnetnes trohs a si siht

Source/Category