#!/opt/bin/perl

# Get the input
print "Content-type: text/html\n\n";
print "<html><head><title>Result</title></head>\n";
print "<body><h1>\n";
read(STDIN, $buffer, 100);
print "</h1>\n";
print $buffer;
print "\n</body></html>\n";

