#!/usr/bin/python3

import cgi

print("Content-Type: text/html")
print()

form = cgi.FieldStorage()

name = form.getvalue("name", "")

print("<html>")
print("<body>")

print("<h2>Hello " + str(name) + "</h2>")

print("</body>")
print("</html>")
