dmuck0.15-beta/docs/muf/
dmuck0.15-beta/game/
dmuck0.15-beta/game/logs/
dmuck0.15-beta/game/muf/
dmuck0.15-beta/game/muf/text/
#include "copyright.h"
#include "config.h"

#include <stdio.h>

void main()
{
    char buf[16384];

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