#include<cstdio>
int main() {
  char a,b,c;
  scanf("%c%c%c",&a,&b,&c);
  printf("%c%c%c",c,b,a);
}