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