var engine = IronPython.Hosting.Python.CreateEngine();
var scope = engine.CreateScope();
del __builtins__['__import__'] #Stops imports working
del __builtins__['print']
reload = None #Stops reloading working (specifically stops them reloading builtins
#giving back an unbroken __import___!
clr.AddReference('System')
print(System.Math.Max(10, 1))