The function extracts all uppercase characters in the input string and returns them in the same order they appear.

[CODE]:
```python
def extract_uppercase(input_string):
    output = ""
    for char in input_string:
        if char.isupper():
            output += char
    return output
```