#211. 正整数倒序输出

正整数倒序输出

题目描述

输入一个正整数 n 。 请将其按位倒序输出。 要求使用递归。

输入格式

一个正整数n

输出格式

一行,含义如题。

样例输入1: 20190 样例输出1: 09102

约定:

1<=n<=1e9