#include <stdio.h>
#include <stdlib.h>
int main(void)
{
static char szMessage[] =
"<html>\r\n"
"<head>\r\n"
"<title>Hello World</title>\r\n"
"</head>\r\n\r\n"
"<body>\r\n"
"<p>Hello, I must be going!</p>\r\n"
"</body>\r\n"
"</html>\r\n";
printf("%s", szMessage);
return(0);
}