The function maps the input "hello" to the string "five".

[CODE]:
```python
def f(x):
    if x == "hello":
        return "five"
```