The function returns all capital letters present in the input string.

[CODE]:
```python
def extract_capital_letters(s):
    return ''.join([c for c in s if c.isupper()])
```