import os, base64
def showme(s):
    b64_1 = "p" + "rint(\"" + s + "\")"
    b64_2 = bytes(b64_1, "utf-8")
    b64_3 = base64.b64encode(b64_2)
    exec(base64.b64decode(b64_3))
print("This is the first test.\n")
showme("This is the second test.")