def isPrototypeOf(x):
    print x

def toSource(x):
    print x

def hasOwnProperty(x):
    print x

isPrototypeOf(1)
toSource(2)
hasOwnProperty(3)
