联系我们:18205821666(微信同号)
Problem3070--数字分离---倒序输出(低位到高位)

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

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 38  Solved: 27
[Status] [Submit] [Creator:]

Description

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

Input

仅一个正整数n。

Output

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

Sample Input Copy

1234

Sample Output Copy

4321

Source/Category