#include <stdio.h> int main() { int n,i=0,j=0; scanf(“%d",&n); while(n) { j=j*10; j=n%10; j=j+i; n=n/10; } printf("%d",j); return 0; }