#include <string.h> int main() { char a[20]; gets(a); int i; for(i=strlen(a)-1;i>=0;i--) {printf("%c",a[i]);} return 0; }```