def scheme(link):
    sep_index = link.find(':')
    return link[:sep_index]


# TODO

def run():
    link = 'https://zzax.io/'
    result = scheme(link)
    print(result)

    # TODO

run()
