#include <stdio.h> void N(int x) { if(x>0) { printf("%d",x%10); N(x/10); } } int main() { int i=0; scanf("%d",&i); N(i); }