#!/bin/ch
#include
void WriteHTML() {
class CResponse Response;
Response.setContentType("text/html");
Response.begin();
printf("\n");
printf("\n");
printf("\n");
printf("Web Plot\n");
printf("\n");
printf("\n");
printf("\n");
printf("\n");
printf("
\n");
printf("
\n");
printf("\n");
printf("\n");
printf("
\n");
printf("\n");
printf("\n");
Response.end();
}
int main() {
setvbuf(stdout, NULL, _IONBF, 0);
WriteHTML();
}