#include <iostream.h>
#inlcude <iomanip.h>

void main()
{
  char ch[20];

  cin.read(ch, 5);
  ch[cin.gcount()] = '\0';
  cout << "Contet-type: text/html" << endl;
  cout << endl;
  cout << "<spinner>" << endl;
  cout << "<html>" << endl;
  cout << "<head>" << endl;
  cout << "<title>Ett test</title>"; << endl;
  cout << "</head>" << endl;
  cout << "<body>" << endl;
  cout << "<h1>First five read were:<h1><br>" << endl;
  cout << ch;
  cout << "</body>" << endl;
  cout << "</html>" << endl;
  cout << "</spinner>" << endl;
}
