Problem3090--任意数的逆序数

3090: 任意数的逆序数

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

Description

输入一个整数n,输出它的逆序数
例如:
输入:123 输出:321
输入:179 输出:971

Input

输入一个整数n

Output

输出一个整数,即输入数据的逆序数

Sample Input Copy

4561239

Sample Output Copy

9321654

Source/Category