2383: 倒序数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:42 Solved:22

Description

【问题】输入一个非负整数n,输出n的倒序数。用递归实现。
【输入】n 
【输出】n的到序数
【样例输入】123 
【样例输出】321
【样例输入2】350 
【样例输出2】053


Sample Input Copy

123

Sample Output Copy

321

Source/Category