#!/usr/bin/python3


print("Content-Type: text/html \n")      #http header with newline char 

print("<html> ")
print("<body> ")
print("<h2>Hello World </h2> ")
print("</body>")
print("</html>")