14 lines
201 B
Python
14 lines
201 B
Python
#!/usr/bin/python3
|
|
|
|
import cgi
|
|
|
|
form = cgi.FieldStorage(encoding="utf-8")
|
|
n = form.getValue("n")
|
|
print("Content-Type: text/html")
|
|
|
|
if (n == 42):
|
|
print("reudig")
|
|
else:
|
|
print("Schneeensch")
|
|
|