>>72 Python

def strip(s):
  s = s.lstrip('0')
  if not len(s):
    return '0'
  return s