def Join (ary, sep = ' '):
  res = ''
  for i in ary:
    res += i
    if i == ary[-1]:
      break
    else:
      res += sep
  return res