The function takes a string input and returns the uppercase equivalent of the input string.
[CODE]: 
```python
def f(x):
    return x.upper()
```