




tank = {}

def set(long long ob, val):
    tank[ob] = val

def get(ob):
    return tank.get(ob)







