def greet(name: str) -> str:
    return f'Hello, {name}!'

def farewell(name: str) -> str:
    return f'Goodbye, {name}!'
