def greet(name: str) -> str:
    return f"Hola, {name}. Bienvenido a DevIA Python."


def main() -> None:
    user_name = input("Escribe tu nombre: ").strip() or "Estudiante"
    print(greet(user_name))


if __name__ == "__main__":
    main()
