Problem : 编写函数实现给定的整数逆序输出

Problem : 编写函数实现给定的整数逆序输出

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 696  Solved: 351
[Submit] [Status] [Web Board] [Creator:]

Description

编写函数实现将一个整数逆序数字输出。在main()中输入一个整数,作为参数调用函数实现将该整数数字逆序,在main()输出逆序后的数字。

Input

123

Output

321

Sample Input

456

Sample Output

654

HINT

不考虑负数和0

[Submit][Status]