"""Dozenal system.

Authors:
    Your Name <your-name@address.de>


.. _`Wikipedia: Duodezimalsystem`:
    https://de.wikipedia.org/wiki/Duodezimalsystem

"""


def duodec(n):
    """Calculate the duodecimal representation of a natural number.

    Args:
      n (int): a natural number.

    Returns:
      string or None: string if `n` >= 0, None otherwise.

    """
    # Anstelle dieses Kommentars folgt hier Ihre Definition
