#include<conio.h>
#include<stdio.h>
void main()
{
 char n[60];
 int i=0;
 clrscr();
 printf("ENTER ANY STRING");
 gets(n);
 while(n[i]!='\0')
 i++;
 i--;
 while(i>=0)
 {
  printf("%c",n[i]);
  i--;
 }
 getch();
}
