The function extracts the uppercase letters from the input string.
[CODE]:
```python
def extract_uppercase(input_string):
    return ''.join(char for char in input_string if char.isupper())
```