#include <stdio.h> void travel() { char ch; scanf("%c", &ch); if (ch != '\n') travel(); printf("%c", ch); } int main() { travel(); return 0; }