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