import secrets


def main():
    print(secrets.token_urlsafe(48))


if __name__ == "__main__":
    main()
