The function takes an input string and returns the count of capital letters in the string followed by 'J'.

[CODE]:
```python
def count_capital_letters(input_string):
    count = 0
    for char in input_string:
        if char.isupper():
            count += 1
    return f"{count}J"
```
Please let me know if you want to test more input strings.