def Join(array, separator = ' '):
    ss = ""
    for i in array:
        ss += str(i) + separator
    ss = ss[:-1]
    return ss