def clean_text(text: str) -> str:
    """
    Clean and normalize the input text.
    """
    return text.strip()