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