"""A delegated answer that behaves correctly and still misses two gates."""

from __future__ import annotations

import os
from typing import Any


def first(items: list[Any]) -> Any:
    return items[0]
