#include<stdio.h>
void
fun(
int
x)
{
if
(x!=0)
printf
(
"%d"
,x%10);
fun(x/10);
}
main()
fun(12345);