char moji[100];
char b;


printf("入力\n");
scanf("%s",moji);


b=0;
while(moji[b] != 0)
b++;



for(b--;b>=0;b--)
printf("%c",moji[b]);
printf("\n");