The function removes the letter 'r' from the input string.

[CODE]:
```python
def remove_r(input_string):
    return input_string.replace("r", "")
```