14 lines
201 B
Python
Executable File
14 lines
201 B
Python
Executable File
#!/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")
|
|
|