/* $Header: decompress.c,v 1.1 90/04/14 14:56:42 lachesis Exp $
 * $Log:    decompress.c,v $
 * Revision 1.1  90/04/14  14:56:42  lachesis
 * Initial revision
 *
 */
#include <stdio.h>

extern const char *uncompress (const char *s);

int main ()
{
  char buf[16384];

  while (gets (buf)) {
    puts (uncompress (buf));
  }
  return (0);
}