#!/usr/bin/env  python3

import sys
import os

here = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.abspath(os.path.join(here, '..')))

# noinspection PyPep8
import challenges

challenges.main()
