d = dict(x=1)
if d.has_key("x"):
    print "yes"
else:
    print "no"
