#2033. 递归实现逆序输出整数

递归实现逆序输出整数

说明

读入1个正整数nn,然后编写递归函数reverse(int n)实现将该正整数逆序输出。

输入格式

一行,给出1个正整数nn

输出格式

一行,输出nn的逆序数

样例

12345
54321