#include <stdio.h>
#include <string.h>

int main()
{
    freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
 char string[100];
 scanf("%s",string);
 strrev(string);
 printf("%s",string);
    return 0;
}

뭐가 틀린거죠??

모두 No good!! 으로 나오네요..;;