#include <stdio.h> void revers() { char c; if((c = getchar()) != '\n') revers(); if(c != '\n') putchar(c); } void main() { revers(); printf("\n"); }