def draft_report(text: str) -> str:
    return f"Draft report for: {text}"

def publish_report(text: str) -> str:
    return f"Published: {text}"
