#!/usr/bin/env python

import os,sys
pwd = os.path.dirname(__file__) + "/lib"
sys.path.append(pwd)
import common

json=common.parse()
try:
  if json[u'userCtx']:
    sys.stdout.write(json[u'userCtx'][u'name']);
  else:
    sys.exit(1)
except Exception:
  sys.exit(1)
