从标准输入上读入正整数 $n$,使用递归函数逆序输出 $n$ 的各位数字。逆序后不输出前导 $0$。
一行,一个正整数 $n$。保证在 int 范围内。
int
一行,一个整数,表示翻转之后的 $n$。输出不保证在 int 范围内。
123
321
1200
21