Problem1040--数字分离---倒序输出(低位到高位)

1040: 数字分离---倒序输出(低位到高位)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 2180  Solved: 1296
[Status] [Submit] [Creator:]

Description

输入一个正整数n,将这个数上的每一位从低位到高位输出。

Input

仅一个正整数n。

Output

仅一个数,是n的倒序输出。

Sample Input Copy

1234

Sample Output Copy

4321

Source/Category