Files
2019-07-29 13:00:09 +02:00

14 lines
203 B
Python
Executable File

#!/usr/bin/python3
import cgi
form = cgi.FieldStorage(encoding="utf-8")
n = form.getvalue("n")
print("Content-type: text/html\n")
if (n == 42):
print("reudig")
else:
print("Schneeensch")