/* +JMJ */
/* HELLO-CGI - Hello CGI program in C */

#include <stdio.h>

int main() {
       printf("Content-type: text/plain\n\nHello, World Wide Web!\n");
       return 0;
}