#!/usr/bin/perl

print "Content-type: image/gif;\n\n";
open(FILE, "fredott.gif");
print while(<FILE>);
close(FILE);
exit(0);
