int main(void) { long a; scanf("%ld",&a); while(a) { printf("%ld",a%10); a/=10; } printf("\n"); getch(); return 0; }