#include <climits>
#include <iostream>
#include <string>
 
using namespace std;
 
int main()
{
	cout << "Content-type:text/html\r\n\r\n";
	cout << "<!DOCTYPE html>\n";
	cout << "<head>\n";
	cout << "<title>Hello World - First CGI Program</title>\n";
	cout << "</head>\n";
	cout << "<body>\n";
	cout << "hi\n";
	cout << "</body>\n";
	cout << "</html>\n";
}
