"""
* Assignment: About IDE Spellchecker
* Complexity: easy
* Lines of code: 0 lines
* Time: 5 min

English:
    1. Install `Hunspell` PyCharm plugin (File -> Settings -> Plugins -> Marketplace -> Hunspell)
    2. Download from https://github.com/LibreOffice/dictionaries/tree/master/en dictionary `.dic` and `.aff` for English language:
        a. https://raw.githubusercontent.com/LibreOffice/dictionaries/master/en/en_US.aff
        b. https://raw.githubusercontent.com/LibreOffice/dictionaries/master/en/en_US.dic
    3. Configure IDE to use that dictionary (File -> Settings -> Editor -> Spelling -> Add custom dictionary)
    4. Run doctests - all must succeed

Polish:
    1. Zainstaluj w PyCharm plugin `Hunspell` (File -> Settings -> Plugins -> Marketplace -> Hunspell)
    2. Pobierz z https://github.com/LibreOffice/dictionaries/tree/master/pl_PL słownik `.dic` oraz `.aff` dla języka polskiego:
        a. https://raw.githubusercontent.com/LibreOffice/dictionaries/master/pl_PL/pl_PL.aff
        b. https://raw.githubusercontent.com/LibreOffice/dictionaries/master/pl_PL/pl_PL.dic
    3. Skonfiguruj IDE do korzystania z tego słownika (File -> Settings -> Editor -> Spelling -> Add custom dictionary)
    4. Uruchom doctesty - wszystkie muszą się powieść

Tests:
    >>> import sys; sys.tracebacklimit = 0

    TODO: Create doctest
"""

# Solution
